@charset "UTF-8";
/* CSS Document */
/*common*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "fot-tsukuardgothic-std", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 2.4rem;
  text-align: center;
  background-color: #fafafa;
}
* {
  box-sizing: border-box;
}
a:hover {
  opacity: 0.5;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-family: "游ゴシック体";
}
button:hover {
  opacity: 0.5;
}

/*header*/
.header {
  padding: 10px 20px;
  width: 100%;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  width: 80%;
  margin: 0 auto;
}
.header_logo {
  height: 70px;
  width: auto;
}
.header_logo img {
  height: 100%;
}
#g-nav-list ul {
  display: flex;
  list-style: none;
}
#g-nav-list li a {
  color: #526776;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 20px;
} 
#privacypolicy_header {
  display: none;
}

@media(max-width:1499px) {
  .header {
    width: 90%;
  }
}
@media(max-width:1269px) {
  #privacypolicy_header {
    display: block;
  }
  #g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
  left: 0;
	width:100%;
  height: 100vh;/*ナビの高さ*/
	background:#00a9e3;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
  
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
  #g-nav-list li a {
    margin-left: 0;
    font-size: 1.2rem;
  }

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #526776;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}

/*top*/
.section-top {
  background-image: url("../images/top-main_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.section-top_wrap {
  padding: 40px 40px 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.section-top_textarea h1 {
  font-size: 3.0rem;
  color: #526776;
  line-height: 6.0rem;
  text-align: left;
  position: relative;
}
.section-top_textarea h1 span {
  font-size: 4.0rem;
}
.section-top_textarea h1 img {
  position: absolute;
  top: -10px;
}
.br_onoff {
  display: none;
}
.section-top_textarea a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4B942;
  color: #fff;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 2.4rem;
  margin: 30px 0 30px auto;
  box-shadow: 5px 5px rgba(50,50,50,0.2);
}
.section-top_textarea ul {
  text-align: left;
  list-style: none;
  font-size: 2.4rem;
}
.section-top_textarea ul li {
  padding-top: 30px;
  position: relative;
}
.section-top_imagearea {
  width: 50%;
}
.section-top_imagearea img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: solid 4px #fff;
}
.section-top_submessage_sp {
  display: none;
}
@media(max-width:1499px) {
  .section-top_wrap {
    width: 90%;
  }
}
@media(max-width:1299px) {
  .section-top_textarea h1 {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .section-top_textarea a {
    margin: 20px 0 20px auto;
  }
  .section-top_textarea ul {
    font-size: 2.0rem;
  }
  .section-top_textarea ul li {
    padding-top:10px; 
  }
  .section-top_imagearea img {
    width:45vw;
  }
}
@media(max-width:1109px) {
  .section-top_wrap {
    flex-direction: column;
    align-items: normal;
  }
  .section-top_textarea {
    width: 80vw;
    margin: 0 auto;
  }
  .section-top_textarea h1 {
    padding-bottom: 40px;
    font-size: 3.0rem;
    line-height: 6.0rem;
  }
  .section-top_textarea a {
    display: none;
  }
  .section-top_textarea ul {
    display: none;
  }
  .section-top_imagearea img {
    width: 80vw;
    height: 50vw;
    object-fit: cover;
  }
  .section-top_submessage_sp {
    display: block;
    list-style: none;
    text-align: left;
    width: 80vw;
    margin: 0 auto;
    font-size: 2.4rem;
  }
  .section-top_submessage_sp li {
    padding-top: 20px;
  }
}
@media(max-width:675px) {
  .br_onoff {
    display: block;
  }
}
@media(max-width:529px) {
  .section-top_wrap {
    padding: 20px 20px 60px;
  }
  .section-top_textarea h1 {
    font-size: 2.4rem;
    line-height: 4.8rem;
    padding-bottom: 20px;
  }
  .section-top_textarea h1 span {
    font-size: 3.0rem;
  }
  .section-top_textarea h1 img {
    top: -15px;
  }
  .section-top_submessage_sp {
    width: 90vw;
  }
  .section-top_submessage_sp li {
    font-size: 1.8rem;
    padding-top: 10px;
  }
}
/*common*/
.title {
  display: inline-block;
}
.title span {
  font-size: 2.4rem;
  color: #526776;
}
.title span::after {
  background: radial-gradient(circle farthest-side, #bce6f5, #bce6f5 60%, transparent 60%, transparent);
  background-size: 10px;
  content: '';
  display: inline-block;
  height: 10px;
  width: 100%;
}
@media(max-width:529px) {
  .title span {
    font-size: 1.8rem;
  }
}

/*category*/
.section-category {
  max-width: 1240px;
  margin: 80px auto;
}
.section-category p {
  padding: 40px 0 ;
}
.section-category_image {
  padding: 40px 0 0;
}
#category_image_pc {
  width: 70vw;
  height: auto;
}
#category_image_sp {
  display: none;
}

@media(max-width:950px) {
  #category_image_pc {
    width: 90vw;
  }
}
@media(max-width:719px) {
  .section-category p {
    padding: 40px 20px;
    text-align: left;
}
  .section-category p br {
    display: none;
  }
}
@media(max-width:675px) {
  #category_image_pc {
    display: none;
  }
  #category_image_sp {
    display: block;
    width: 60vw;
    margin: 0 auto;
  }
}
@media(max-width:529px) {
  .section-category {
    margin: 40px auto;
  }
  .section-category::before {
    display: block;
    height: 4rem;
    margin-top: -4rem;
    content: "";
  }
  #category_image_sp {
    width: 80vw;
  }
  .section-category p {
    padding: 20px;
  }
}

/*now*/
.section-now {
  background-image: url("../images/voice_bg.png");
  background-size: cover;
  background-position: bottom;
  padding: 80px 0;
}
.section-now_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 80px auto;
  padding-top: 40px;
}
.section-now_wrap li {
  width: 350px;
  height: 250px;
  padding: 20px;
  background-color: #fff;
  list-style: none;
  border-radius: 20px;
  position: relative;
}
.section-now_wrap li h3  {
  font-size: 1.8rem;
  color: #526776;
  text-align: left;
}
.section-now_wrap li img {
  height: 100px;
}
.now_discription {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.now_discription p {
  text-align: left;
  font-size: 1.4rem;
  width: 60%;
}
.section-now_wrap a {
  text-decoration: none;
  color: #fff;
  background-color: #f4b942;
  display: inline-block;
  font-size: 1.4rem;
  width: 300px;
  padding: 5px;
  border-radius: 20px;
  position: absolute;
  bottom: 20px;
  left: 7%;
}

@media(max-width:1230px) {
  .section-now_wrap {
    padding: 0 20px;
  }
}
@media(max-width:1230px) {
  .section-now_wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  .section-now_wrap li {
    margin-bottom: 30px;
  }
}
@media(max-width:529px) {
  .section-now {
    padding: 40px 0;
  }
  .section-now_wrap {
    margin-top: 40px;
  }
}

/*activities*/
.section-activities {
  margin: 80px 0 ;
  background-image: url("../images/activities_bg.png");
  padding:80px 0;
  background-size: cover;
  background-position: center;
}
.activities_list {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 60px auto;
}
.activities_list a {
  text-decoration: none;
  color: #333;
}
.section-acitivities_1 {
  display: flex;
  flex-direction: column;
}
.section-acitivities_1 img,.section-acitivities_2 img,.section-acitivities_3
img {
  width: 365px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  vertical-align: middle;
}
.activities_textarea {
  width: 365px;
  height: 200px;
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  position: relative;
}
.activities_textarea h3 {
  font-size: 1.8rem;
  color: #526776;
  padding: 10px 0;
}
.activities_textarea p {
  text-align: left;
}
.activities_textarea img {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media(max-width:1259px) {
  .activities_list {
    flex-direction: column;
    align-items: center;
  }
  .section-acitivities_1, .section-acitivities_2 {
    padding-bottom: 40px;
  }
  .section-activities {
    padding: 0;
  }
}
@media(max-width:529px) {
  .section-activities {
    margin: 60px 0 0;
    padding-bottom: 0;
  }
  .activities_list {
    margin: 30px 0;
  }
}

/*voice*/
.section-voice {
  background-image: url("../images/voice_bg.png");
  background-size: cover;
  background-position: bottom;
  padding-bottom: 40px;
  margin: 100px 0;
}
.section-voice_lead {
  padding: 40px 0 0;
}
.slider {
  width:80%;
  margin:80px auto 0;
}

.slider img {
    width:100%;
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
  display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

.slider p {
  text-align: end;
}

@media(max-width:719px) {
  .section-voice_lead {
   padding: 40px 20px 0;
    text-align: left;
  }
  
}
@media(max-width:529px) {
  .section-voice {
    margin: 40px 0 20px;
  }
  .section-voice_lead {
    padding: 20px 20px 0;
  }
}

/*about*/
.section-about-information {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin: 0 auto 40px;
  text-align: left;
  padding: 0 20px;
}
.section-about-information dt {
  width: 20%;
  padding: 40px 0 10px;
  border-bottom: 0.5px solid #333 ;
}
.section-about-information dd {
  width: 80%;
  padding: 40px 0 10px;
  border-bottom: 0.5px solid #333 ;
}

.btn_cvr {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4B942;
  color: #fff;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 2.4rem;
  box-shadow: 5px 5px rgba(50,50,50,0.2);
  margin: 150px auto 0;
}
@media(max-width:699px) {
  .section-about-information {
    width:85vw;
  }
}
@media(max-width:475px) {
  .section-about-information {
    width:95vw;
    font-size: 1.4rem;
  }
}
@media(max-width:529px) {
  .section-about-information {
    margin: 0 auto 60px;
  }
  .section-about-information dt {
    padding: 20px 0 10px;
  }
  .section-about-information dd{
    padding: 20px 0 10px;
  }
  .btn_cvr {
    margin: 40px auto 0;
  }
}

/*footer*/
.footer {
  padding:80px 0 20px;
  background-image: url("../images/footer_bg.png");
  background-size: cover;
  background-position: top;
  margin-top: -120px;
}
.footer_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  padding: 200px 20px 0;
}
.footer_logo {
  width: 150px;
  height: auto;
}
.footer p {
  font-size: 1.4rem;
  color: #526776;
  padding-top: 40px;
}
.navigation {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding-top: 200px;
  padding-left: 100px;
  font-size: 1.2rem;
}
.navigation li a {
  color: #526776;
	text-decoration: none;
	padding:10px;
	display: block;
	font-weight: bold;
}
.footer_sns {
  padding-top: 80px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.footer_sns img {
  width: 40px;
  object-fit: contain;
  margin-left: 60px;
}

@media(max-width:1009px) {
  .footer_logo {
    width: 80px;
  }
}
@media(max-width:1060px) {
  .footer_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_logo {
    width: 120px;
    padding-bottom: 20px;
  }
  .navigation {
    display: none;
  }
  .footer_wrap {
    flex-direction: column;
  }
  #footer_instagram {
    margin-left: 0;
  }
}

@media(max-width:529px) {
  .footer_wrap {
    padding-top: 350px;
  }
  .footer_sns img {
    width: 30px;
    margin-left: 40px;
  }
}
#btn_sp_fix {
  display: none;
}
@media(max-width:960px) {
  #btn_sp_fix {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 80px;
    background-color: #F4B942;
    position: fixed;
    bottom: 0;
    font-size: 2.4rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-top: solid 3px #fff;
    z-index: 3;
  }
}

/*common main　-下層ページ-*/
.section-common_top {
  background-image: url("../images/common-main_bg.png");
  background-size: cover;
  margin: 40px 0;
}
.common-top_imagearea {
  width: 86vw;
  height: 30vw;
  margin: 0 auto;
  position: relative;
}
.common-top_imagearea img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #fff;
}
.common-top_imagecover {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 20px;
  background-color: rgba(51,51,51,0.6);
  position: absolute;
  top: 0;
  z-index: 3;
  border: 3px solid #fff;
}
.common-top_imagearea h1 {
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 4.0rem;
  line-height: 6.0rem;
  color: #526776;
  -webkit-text-stroke: 1.5px #fff;
  z-index: 4;
}
@media(max-width:579px) {
  .section-common_top {
    margin: 0 0 30px;
  }
  .common-top_imagearea h1 {
    font-size: 2.4rem;
    line-height: 4.8rem;
    -webkit-text-stroke: 1px #fff;
  }
  .common-top_imagearea {
    width: 90vw;
    height: 68vw;
  }
}
@media(max-width:429px) {
  .common-top_imagearea h1 {
    font-size: 1.8rem;
    line-height: 3.6rem;
    -webkit-text-stroke: 0.7px #fff;
  }
}
  
/*page contact*/
.section-contact_linetel {
  margin-top: 80px;
  padding: 0 20px;
}
.section-contact_linetel::before {
  display: block;
  height: 7rem;
  margin-top: -7rem;
  content: "";
}
.contact_linetel_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 80px auto 100px;
}
.contact_linetel_wrap a {
  text-decoration: none;
}
.section-contact_line, .section-contact_tel {
  width: 350px;
  height: 180px;
  background-color: #526776;
  border-radius: 20px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-contact_line p, .section-contact_tel p {
  font-size: 2.4rem;
  color: #fff;
}
.section-contact_line img, .section-contact_tel img {
  width: 30px;
  height: 30px;
  vertical-align: bottom;
  margin-right: 10px;
}
#line_qr {
  width: 80px;
  height: 80px;
  margin-top: 20px;
}
#tel_number {
  margin-top: 40px;
}
.section-contact_lead {
  padding: 40px 0 0;
}
@media(max-width:759px) {
  .section-contact_linetel::before {
    height: 5rem;
    margin-top: -5rem;
  }
  .contact_linetel_wrap {
    flex-direction: column;
    align-items: center;
  }
  .contact_linetel_wrap a {
    margin-bottom: 30px;
  }
}
@media(max-width:529px) {
  .section-contact_linetel {
    margin-top: 0;
  }
  .section-contact_lead {
    padding-top: 20px;
    text-align: left;
  }
  .contact_linetel_wrap {
    margin: 40px auto;
  }
}

/*contact form*/
.section-contact_form {
  padding: 0 20px;
}
#formWrap {
  width: 700px;
  margin: 80px auto 0;
  color: #555;
  line-height: 120%;
  font-size: 90%;
}
#formWrap p {
  margin: 80px auto;
}
.form_lead {
  text-align: left;
}
table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
table.formTable td, table.formTable th {
  padding: 10px;
  text-align: left;
}
table.formTable th {
  width: 30%;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}
#btn_check {
  border: none;
  outline: none;
  background-color: #F4B942;
  width: 240px;
  height: 60px;
  border-radius: 40px;
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 5px 5px rgba(50,50,50,0.2);
  font-family: "fot-tsukuardgothic-std", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
@media(max-width:799px) {
  #formWrap {
    width: 80%;
  }
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }
  #formWrap p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 50px;
  }
  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  form input[type="text"], form textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }
}

/*Q&A*/
.section-qa {
  background-image: url("../images/qa_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*Q&Aアコーディオン*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:60px auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  background-color: #fff;
	border-radius: 20px;
}

/*アコーディオンタイトル*/
.question {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.6rem;
    font-weight: normal;
    color: #526776;
    text-align: left;
    padding: 3% 10% 3% 30px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.question::before,
.question::after{
    position: absolute;
    content: '';
    
}
.question::before{
    top: 25%;
    right: 15px;
    width: 25px;
    height: 25px;
    background-color: #f4b942;
    border-radius: 50%;
}
.question::after{    
    top: 32%;
    right: 23px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
/*　closeというクラスがついたら形状変化　*/
.question.close::before{
	transform: rotate(45deg);
}

.question.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #f3f3f3;
  padding: 3% 6%;
  border-radius: 0 0 20px 20px;
  text-align: left;
}

@media(max-width:599px) {
  .section-qa {
    background-size: cover;
  }
  .accordion-area {
    margin-top: 30px;
  }
}

/*page_housing assistance*/
.housing_assistance_top {
  object-position: top;
}
.index_sp {
  display: none;
}
.section-image_property {
  background-image: url("../images/imagephoto_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-image_property h3 {
  font-size: 4.0rem;
  color: #526776;
  margin: 60px auto 40px;
}
#copy_sp {
  display: none;
}
.section-image_property h2 {
  margin-top: 60px;
}
.imagephoto_wrap {
  width: 75%;
  margin: 60px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.imagephoto_area {
  margin-bottom: 40px;
}
.imagephoto_area img{
  width: 280px;
  height: 210px;
  border-radius: 20px;
  object-fit: cover;
  border: solid 3px #fff;
}
.annotation {
  width: 60vw;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 60px;
  text-align: left;
  position: relative;
}
.annotation::before {
  content:url("../images/circle_1.png");
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
}
.annotation::after {
  content:url("../images/circle_2.png");
  display: block;
  position: absolute;
  bottom: -10px;
  right: -10px;
}
@media(min-width:1490px) {
  .imagephoto_wrap {
    width: 60%;
  }
}
@media(min-width:1800px) {
  .imagephoto_wrap {
    width: 55%;
  }
}
@media(max-width:1280px) {
  .imagephoto_wrap{
    width: 75%;
  }
  .imagephoto_area img {
    width: 360px;
    height: 270px;
  }
}
@media(max-width:960px) {
  .section-image_property {
    background-size: cover;
  }
  .section-image_property h3 {
    font-size: 3.6rem;
  }
  .imagephoto_wrap {
    flex-direction: column;
    width: 100%;
  }
}
@media(max-width:767px) {
  .section-image_property h3 {
    font-size: 2.4rem;
  }
  .image_lead {
    text-align: left;
    padding: 0 20px;
  }
  .image_lead br {
    display: none;
  }
  .annotation {
    width: 90vw;
    padding: 20px;
  }
}
@media(max-width:529px) {
  .index_sp {
    display: block;
    width: 80vw;
    margin: 0 auto;
  }
  .index_sp img {
    width: 25px;
  }
  .index_sp ul {
    list-style: none;
    text-align: left;
    color: #526776;
    text-decoration: none;
  }
  .index_sp ul li:not(:first-child) {
    padding-top: 10px;
  }
  .index_sp ul li a {
    color: #526776;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  .index_sp ul li img {
    margin-left: 20px;
  }
  .section-image_property h2 {
    margin-top: 40px;
  }
  .imagephoto_wrap {
    margin-top: 30px;
  }
  .imagephoto_area:last-child {
    margin-bottom: 0;
  }
}
@media(max-width:499px) {
  .section-image_property h3 {
    display: none;
  }
  #copy_sp{
    display: block;
    line-height: 3.6rem;
  }
  .section-image_property p {
    text-align: left;
    padding: 0 20px;
  }
}


.section-flow {
  margin-top: 80px;
  background-image: url("../images/flow_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.flow-area-wrap {
  width: 70vw;
  margin: 60px auto;
  padding: 40px 60px 20px 150px;
  background-color: #fff;
  border-radius: 20px;
} 
.flow-area {
  position: relative;
  counter-increment: cnt;
  text-align: left;
} 
.flow-area:not(:last-child):before {
  content: '';
  width: 2px;
  height: 100%;
  border-right: 2px solid #00a9e3;
  position: absolute;
  left: -4em;
  top: 3em;
}
.flow-area h3 {
  position: relative;
  font-size: 2.4rem;
  color: #00a9e3;
  margin-bottom: 20px;
}
.flow-area h3::before {
  position: absolute;
  left: -3.5em;
  background-color: #00a9e3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #fff;
  content: counter(cnt);
  text-align: center;
}
.flow-area p {
  padding-bottom: 60px;
}
@media(max-width:1220px) {
  .flow-area-wrap {
    width: 85vw;
    padding: 40px 50px 20px 120px;
  }
}
@media(max-width:959px) {
  .flow-area h3 {
    font-size: 1.8rem;
  }
  .flow-area:not(:last-child):before {
    left: -3em;
    top: 2em;
  }
}
@media(max-width:599px) {
  .section-flow::before {
    display: block;
    height: 4rem;
    margin-top: -4rem;
    content: "";
  }
  .section-flow {
    margin-top: 60px;
    background-size: cover;
  }
  .flow-area-wrap {
    background: none;
    padding: 0;
    margin-top: 30px;
  }
  .flow-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 60px;
  }
  .flow-area:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 60px;
    border-right: 2px solid #00a9e3;
    position: absolute;
    left: 50%;
    bottom:-60px;
  }
  .flow-area p {
    padding-bottom: 0;
  }
  .flow-area::before {
    display: none;
  }
  .flow-area h3::before {
    display: none;
  }
}

/*page_welfare*/
.section-welfare_checklist {
  margin-top: 80px;
  padding-bottom: 150px;
  background-image: url("../images/welfare_checklist_bg.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.welfare_top {
  object-position: center;
}
.checklist img {
  width: 20px;
}
.section-welfare_checklist h3 {
  font-size: 3.0rem;
  padding: 40px 0;
}
.checklist_lead {
  padding-bottom: 40px;
}
.checklist_bg {
  background-color: #fff;
  border-radius: 20px;
  width: 70vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}
.checklist_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
} 
.checklist {
  position: relative;
  font-size: 2.4rem;
  color: #526776;
  font-weight: 600;
  list-style: none;
  padding-bottom: 30px;
}
.checklist img {
  position: absolute;
  left: 3px;
}
.checklist span {
  font-size: 1.6rem;
}
.checklist_arrow {
  width: 70px;
}
.checklist_support {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
}
.checklist_support img {
  width: 170px;
}
.checklist_support p {
  font-size: 3.0rem;
  color: #526776;
  line-height: 4.5rem;
  font-weight: 600;
}
.section-aboutwelfare p {
  padding: 40px 0;
}
.section-aboutwelfare h3 {
  padding: 40px 0;
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #526776;
}
@media(min-width:1520px) {
  .section-welfare_checklist h3 {
    padding: 60px 0;
  }
  .checklist_lead {
    padding-bottom: 60px;
  }
  .checklist_bg {
    padding: 60px 40px;
  }
}

@media(max-width:1280px) {
  .checklist_support {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .checklist_support img {
    padding-bottom: 20px;
  }
}
@media(max-width:1050px) {
  .section-welfare_checklist {
    background-position: center;
    padding-bottom: 80px;
  }
  .checklist_wrap {
    flex-direction: column;
    text-align: left;
  }
  #checklist_indent {
    text-indent: -2em;
    padding-left: 2em;
  }
}
@media(max-width:800px) {
  .checklist {
    font-size: 1.8rem;
  }
  .checklist_support p {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
@media(max-width:700px) {
  .checklist_lead {
    text-align: left;
    padding: 0 20px 40px;
  }
  .checklist_lead br {
    display: none;
  }
  .section-aboutwelfare p {
    text-align: left;
    padding: 40px  20px;
  }
  .section-aboutwelfare p br {
    display: none;
  }
  .section-aboutwelfare h3 {
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
}
@media(max-width:600px) {
  .section-welfare_checklist {
    background-size: cover;
    margin-top: 40px;
    padding-bottom: 60px;
    background-position: 60%;
  }
  .section-welfare_checklist h3 {
    font-size: 2.4rem;
  }
  .checklist_support p {
    font-size: 2.0rem;
  }
  .checklist_bg {
    width: 90vw;
    padding: 20px;
  }
  .section-aboutwelfare p {
    padding: 20px; 
  }
  .section-aboutwelfare h3 {
    text-align: left;
    padding: 40px 20px;
  }
  .section-aboutwelfare h3 br {
    display: none;
  }
}
@media(max-width:430px) {
  .section-welfare_checklist h3 {
    font-size: 1.8rem;
    padding: 20px 0;
  }
  .checklist_support p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
  .section-aboutwelfare h3 {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/*page_initiative*/
.section-initiative {
  background-image: url("../images/initiative_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 80px;
}
#initiative_h1 br {
  display: none;
}
.initiative_lead {
  padding: 40px 0 80px;
}
.initiative_lead span {
  font-weight: 600;
  border-bottom: solid 1px #333;
}
.initiative {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.initiative img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border: solid #fff 3px;
  border-radius: 20px;
}
.initiative_text {
  padding-left: 60px;
  text-align: left;
}
.initiative_text h3 {
  font-size: 2.4rem;
  color: #526776;
}
.initiative_text p {
  padding-top: 20px;
}
.initiative_text p span {
  font-weight: 600;
  border-bottom: solid 1px #333;
}
.initiative_image {
  width: 400px;
  height: 250px;
  position:relative;
	z-index: 1;
}
.slider-item01 {
    background:url("../images/initiative_1.jpg");
}
.slider-item02 {
    background:url("../images/initiative_2.jpeg");
}
.slider-item03 {
    background:url("../images/initiative_3.jpg");
}
.slider-item04 {
    background:url("../images/initiative_4.jpeg");
}
.slider-item05 {
    background:url("../images/initiative_5.jpeg");
}
.slider-item06 {
    background:url("../images/initiative_6.jpeg");
}
.slider-item07 {
    background:url("../images/initiative_7.jpeg");
}
.slider-item08 {
    background:url("../images/initiative_8.jpeg");
}
.slider-item09 {
    background:url("../images/initiative_9.jpeg");
}
.slider-item10 {
    background:url("../images/initiative_10.jpeg");
}
.slider-item11 {
    background:url("../images/initiative_11.jpeg");
}
.slider-item12 {
    background:url("../images/initiative_12.jpeg");
}
.slider-item {
  height: 250px;
  border: solid #fff 3px;
  border-radius: 20px; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-sns {
  padding-top: 40px;
  background-image: url("../images/sns_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sns_lead{
  padding: 40px 0 80px;
}
.instagram_x_wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.instagram-media {
  width: 200px;
}
.sns_icons p {
  padding: 60px 0 40px;
}
.sns_icons img {
  width: 60px;
  object-fit: contain;
}
.icons_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto 80px;
}

@media(max-width:1210px) {
  #initiative_h1 {
    font-size: 3.0rem;
  }
  .initiative {
    padding: 0 20px;
  }
  .instagram_x_wrap {
    width: 90vw;
  }
}
@media(max-width:959px) {
  .section-initiative {
    background-size: cover;
  }
  .initiative {
    flex-direction: column;
    align-items: center;
    padding: 0 60px;
  }
  .initiative_text {
    padding-left: 0;
  }
  .initiative_text h3 {
    text-align: center;
    padding-top: 30px;
  }
  .section-sns {
    background-size: cover;
  }
}
@media(max-width:910px) {
  #initiative_h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
@media(max-width:830px) {
  .instagram_x_wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width:590px) {
  .section-initiative {
    margin-top: 40px;
  }
  #initiative_h1 br {
    display: block;
  }
  .initiative {
    margin-bottom: 60px;
  }
  .initiative_lead {
    text-align: left;
    padding: 30px 20px 40px;
  }
  .initiative_image {
    width: 360px;
    height: 210px;
  }
  .slider-item {
    height: 210px;
    border-radius: 20px 20px 0 0;
    vertical-align: middle;
  }
  .initiative_text {
    width: 360px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 0 20px 20px;
  }
  .initiative_text h3 {
    font-size: 1.8rem;
  }
  .section-sns {
    padding-top: 0;
  }
  .sns_lead {
    padding: 30px 20px 40px;
    text-align: left;
  }
  .sns_lead br {
    display: none;
  }
  .instagram_x_wrap {
    width: auto;
  }
}

/*sponsoring_companies*/
.section_sponsors {
  margin-top: 80px;
}
.sponsors_wrap {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sponsors {
  width: 320px;
}
.sponsors_logo {
  width: 320px;
  height: 200px;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
  border: solid 3px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors_name {
  width: 320px;
  height: 150px;
  border: solid 3px #fff;
  border-radius: 0 0 20px 20px;
  padding: 20px;
  margin-bottom: 60px;
  position: relative;
}
.sponsors_name h3 {
  text-align: left;
  font-size: 1.6rem;
  color: #526776;
}
.sponsors_name a {
  width: 100px;
  height: 30px;
  border-radius: 15px;
  background-color: #f4b942;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
}
.dummy {
  visibility: hidden;
}
#sponsor_1, #sponsor_2, #sponsor_4, #sponsor_5 {
  width: 280px;
}

#sponsor_3, #sponsor_9 {
  width: 180px;
}
#sponsor_6 {
  width: 250px;
}
#sponsor_7 {
  width: 120px;
}
#sponsor_8 {
  width: 280px;
}
@media(max-width:1200px) {
  .sponsors_wrap {
    padding: 0 20px;
  }
}
@media(max-width:1070px) {
  .sponsors_wrap {
    width: 80vw;
  }
}
@media(max-width:900px) {
  .sponsors_wrap {
    width: 90vw;
  }
}
@media(max-width:799px) {
  .sponsors_wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width:579px) {
  .sponsors_wrap {
    margin: 40px 0;
  }
  .section_sponsors {
  margin-top: 40px;
}
}

/*for non-Japanese residents*/
.section-nonjapanese_lead {
  margin: 100px auto 0;
}
.section-nonjapanese_lead p {
  padding-top: 40px;
}
.section-nonjapanese_message {
  padding: 100px 0;
  background-image: url("../images/nonjapanese_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nonjapanese_message_wrap {
  background-color: #fff;
  border-radius: 20px;
  display: block;
  width: 55vw;
  margin: 60px auto;
  padding: 60px 80px;
}
.nonjapanese_message_wrap p {
  padding-top: 40px;
  line-height: 3.2rem;
}
.nonjapanese_message_wrap p span {
  font-weight: 600;
  color: #F4B942;
}
.section-nonjapanese_imagephoto {
  margin: 80px auto 100px;
}
.nonjapanese_imagephoto_wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.nonjapanese_imagephoto_wrap img {
  width: 370px;
  margin-bottom: 30px;
}

@media(max-width:1100px) {
  .section-nonjapanese_imagephoto {
    margin-top: 0;
  }
  .nonjapanese_imagephoto_wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width:960px) {
  .nonjapanese_message_wrap  {
    width: 75vw;
  }
}
@media(max-width:579px) {
  .section-nonjapanese_lead {
    margin-top: 50px;
    margin-bottom: -80px;
  }
  .section-nonjapanese_message {
    padding-bottom: 0;
  }
  .nonjapanese_message_wrap  {
    width: 90vw;
  }
  .nonjapanese_message_wrap {
    padding: 60px 20px;
  }
  .nonjapanese_message_wrap p {
    text-align: left;
  }
}

/*企業理念*/

.section-mission_lead {
  margin: 100px auto;
}
.section-mission_lead p {
  padding-top: 40px;
}
.section-businessmodel {
  margin-bottom: 100px;
}
.section-businessmodel p {
  padding: 40px 0;
}
.image_mission_businessmodel {
  margin: 60px auto 0;
  width: 85vw;
}
.image_mission_businessmodel img {
  width: 100%;
}
.businessmodel_sp {
  display: none;
}
.businessmodel_sp_text {
  display: none;
}

.section-issue {
  margin-bottom: 100px;
  background-image: url("../images/issue_bg.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.issue_list {
  margin: 60px auto;
}
.issue_list li {
  margin: 60px auto;
  width: 70vw;
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 40px;
  list-style: none;
}
.issue_list h3 {
  color: #00a9e3;
  font-size: 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.issue_list h3 span {
  font-size: 1.6rem;
  padding-bottom: 10px;
}
.issue_list h4 {
  color: #00a9e3;
  font-size: 2.4rem;
  padding: 20px 0 40px;
}
.issue_list h4 br {
  display: none;
}
.issue_wrap {
  display: flex;
}
.issue_textarea p {
  text-align: left;
  padding-bottom: 20px;
  width: 90%;
}
.source {
  font-size: 1.2rem;
}
.issue_imagearea img {
  width: 300px;
}

.works_list {
  list-style: none;
  width: 96%;
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works_list li {
  width: 550px;
  margin: 40px 0;
}
.works_textarea {
  border-radius:0 0 20px 20px;
  background-color: #fff;
}
.work_h3 {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  color: #526776;
  text-align: left;
  padding: 3% 10% 3% 30px;
  transition: all .5s ease;
}
.work_h3 span {
  color: #00a9e3;
  font-size:3.0rem;
  margin-right: 20px;
  display: inline-block;
  white-space: nowrap;
}
.works_box {
  text-align: left;
  display: none;
  background: #f3f3f3;
  padding: 3%;
  border-radius: 0 0 20px 20px;
}
.work_h3::before,
.work_h3::after{
    position: absolute;
    content:'';
    
}
.work_h3::before{
    top: 25%;
    right: 15px;
    width: 25px;
    height: 25px;
    background-color: #f4b942;
    border-radius: 50%;
}
.work_h3::after{    
    top: 32%;
    right: 23px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
.work_h3.close::before{
	transform: rotate(45deg);
}

.work_h3.close::after{
	transform: rotate(-45deg);
}
.works_imagearea img {
  vertical-align: middle;
  width: 100%;
}
.works_box h4 {
  padding-top: 20px;
}
.section-mission_message {
  margin: 100px auto;
  width: 60vw;
  background-color: #fff;
  padding: 40px 60px 60px;
  border-radius: 30px;
  position: relative;
}
.section-mission_message p {
  padding-top: 40px;
}
.section-mission_message::before {
  content: url(../images/circle_1.png);
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
}
.section-mission_message::after {
  content: url(../images/circle_2.png);
  display: block;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

@media(max-width:1170px) {
  .works_list {
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width:999px) {
  .issue_wrap {
    flex-direction: column;
  }
  .issue_textarea p {
    width: 100%;
  }
}
@media(max-width:899px) {
  .section-mission_message {
    width: 80vw;
  }
}

@media(max-width:700px) {
  .businessmodel_sp {
    display: block;
  }
  .businessmodel_pc {
    display: none;
  }
  .image_mission_businessmodel img {
    width: 80%;
    margin: 0 auto;
  }
  .businessmodel_sp_text  {
    display: block;
    padding-top: 40px;
  }
  .businessmodel_sp_text ul {
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
  .businessmodel_sp_text li {
    list-style:none;
  }
  .businessmodel_sp_text li h3 {
    font-size: 1.8rem;
    color: #526776;
    font-weight: 600;
    border-bottom: solid 2px #526776;
    position: relative;
    padding-left: 30px;
  }
  .businessmodel_sp_text li h3:after{
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 5px;
    width: 100%;
    border-bottom: solid 2px #f4b942;
  }
}

@media(max-width:599px) {
  .section-mission_lead {
    margin: 40px auto;
  }
  .section-mission_lead p {
    margin: 0 auto;
    width: 90vw;
    padding-top: 20px;
    text-align: left;
  }
  .section-mission_lead p br {
    display: none;
  }
  .section-businessmodel {
    margin-bottom: 40px;
  }
  .businessmodel_lead  {
    width: 90vw;
    margin: 0 auto;
    text-align: left;
  }
  .businessmodel_lead br {
    display: none;
  }
  .image_mission_businessmodel {
    margin-top: 20px;
  }
  .businessmodel_sp_text ul {
    width:100%;
  }
  .section-businessmodel p {
    padding: 20px 0; 
  }
  .section-issue {
    margin-bottom: 40px;
    background-size: cover;
  }
  .issue_list {
    margin: 40px 0;
  }
  .issue_list h3 {
    padding-bottom: 0;
    font-size: 2.4rem;
  }
  .issue_list h3 span {
    font-size: 1.2rem;
  }
  .issue_list h4 {
    padding: 20px 0;
    font-size: 1.8rem;
  }
  .issue_list h4 br {
    display: block;
  }
  
  .issue_list li {
    width: 90vw;
    padding: 20px;
  }
  .issue_imagearea img {
    width: 150px;
  }
  #issue_img_2 {
    width: 300px;
  }
  .works_list {
    margin-top: 0;
  }
  .works_list li {
    width: 90vw;
  }
  .work_h3 {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  .work_h3 span {
    font-size: 2.4rem;
    margin-right: 10px;
    display: inline-block;
    white-space: nowrap;
  }
  .section-mission_message {
    width: 90vw;
    padding: 30px 20px;
  }
  .section-mission_message p {
    text-align: left;
    padding-top: 20px;
  }
  .section-mission_message p  br {
    display: none;
    margin: 0 auto 80px;
  }
}


/*未公開*/
.comingsoon {
  margin-top: 100px;
  font-size: 2.4rem;
  color: #526776;
}


