/* 共通 */
html{
  font-size: 62.5%;
}

/* 画面幅が1350px以下の時 */
@media screen and (max-width: 1440px) {
  html{
    font-size: calc(10 / 1440 * 100vw);
  }  
}

body{
  color: #231F20;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
body::before{
  background: url(https://translation.la-org.com/wp-content/uploads/2023/08/nasa-Q1p7bh3SHj8-unsplash.png) no-repeat center;/* 画像（ここにfixedは入れない） */
  background-size: cover;/* cover指定できる */
  content: "";
  display: block;
  position: fixed;/* 擬似要素ごと固定 */
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;/* 横幅いっぱい */
  height: 100vh;/* 縦幅いっぱい */
}

/* ホバー */
a {
  transition: .3s;
}
a:hover {
  opacity: 0.7;
}

/* 共通パーツ */

.u-mobile{
  display: none;
}

.u-desktop{
  display: block;
}

.w1200{
  max-width: 125rem;
  padding: 0 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.w1000{
  max-width: 105rem;
  padding: 0 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.top-layout{
  padding:9rem 0;
}

.section-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 8.8rem 0 4.9rem;
  position: relative;
}
.section-title::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0fafaa;
  opacity: .7;
  z-index: -1;
}
.section-title h3{
  font-family: 'Rubik', sans-serif;
  font-size: 70px;
  line-height: calc(83 / 70);
  margin-top: 10px;
  letter-spacing: .05em;
}
.section-title p{
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  line-height: calc(36 / 18);
  letter-spacing: .05em;
  font-style: italic;
}
.section-title p:nth-of-type(2){
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  line-height: calc(28 / 22);
  letter-spacing: .1em;
  font-weight: 700;
  font-style: normal;
  margin-top: 15px;
}

.subtitle{
  text-align: center;
  letter-spacing: .05em;
}

.subtitle h3{
  font-family: 'Rubik', sans-serif;
  font-size: 42px;
  line-height: calc(36 / 42);
}

.subtitle p{
  font-size: 18px;
  line-height: calc(30 / 18);
  margin-top: 10px;
  border-bottom: 1px solid #0fafaa;
  padding-bottom: 20px;
  display: inline-block;
}

.section-btn a{
  color: #fff;
  background-color: #279F9F;
  min-width: 280px;
  display: inline-block;
  text-align: center;
  padding: 17.5px 0 16.5px;
  border-radius: 80px;
  font-size: 15px;
  line-height: calc(22 / 15);
  position: relative;
}

.section-btn a::after{
  content: "";
  position: absolute;
  top: 35%;
  right: 20px;
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(/wp-content/themes/chuo-fudousan/img/common/arrow-right.svg)
  no-repeat center / contain;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .u-mobile{
    display: block;
  }
  .u-desktop{
    display: none;
  }
  .w1000{
    max-width: 55rem;
    padding: 0 2rem;
  }
  .w1200{
    max-width: 55rem;
    padding: 0 2rem;
  }
  body::before{
    background: url(https://translation.la-org.com/wp-content/uploads/2023/08/nasa-Q1p7bh3SHj8-unsplash.png) no-repeat 92%;/* 画像（ここにfixedは入れない） */
    background-size: cover;/* cover指定できる */
  }
  .top-layout{
    padding:5rem 0;
  }
  .section-title{
    padding: 30px 20px;
  }
  .section-title h3{
    font-size: 54px;
    line-height: calc(60 / 54);
    text-align: center;
  }

}

/* ヘッダー */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 10000;
  background-color: #0fafaa;
}

.header__inner{
  padding-left: 8rem;
  padding-right: 8rem;
}

.header__wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
	/*height: 100px;*/
}

.header__left{
  display: flex;
  align-items: center;
}

.header__logo{
  padding: 3.5rem 0 2rem;
}

.header__logo a img{
  width: 14.2rem;
}

.header__text{
  /*margin-top: 3rem;
  margin-bottom: 2rem;
  margin-left: 2rem;*/
  color: #186565;
  /* font-size: 1.2rem; */
  font-size: 12px;
  line-height: calc(16 / 12);
  font-weight: 400;
 /* width: 20rem;*/
}

/*==ナビゲーション全体の設定*/
.navi{
  display: flex;
	align-items: center;
}
.navi-main{
  text-align: center;
  font-size: 15px;
  line-height: calc(21 / 15);
  font-weight: 700;
  margin-top: 10px;
}
/*ナビゲーションを横並びに*/
.navi-main ul{
  display: flex;
  /* justify-content: center; */
}

/*ナビゲーションのリンク設定*/
.navi-main ul li a{
  display: block;
  padding: 5px 7px;
  transition:all .3s;
}
.navi-main ul li a::before{
  content:'';
  width:10px;
  height:10px;
  display: inline-block;
  margin-right: .4rem;
  background: #186565;
  border-radius: 50%;
}

.navi-tel{
  margin-left: 4rem;
}
.navi-tel p:first-of-type{
  font-size: 13px;
  line-height: calc(30 / 13);
  font-weight: 400;
  text-align: center;
}
.navi-tel span{
     font-size: 27px;
    line-height: calc(38 / 32);
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    text-align: center;
    color: #fff;
    padding-right: 8px;
}
.navi-tel span::before{
  content:'';
  width:4rem;
  height:4rem;
  display: inline-block;
  margin-right: .4rem;
  margin-bottom: -.8rem;
  background: url(/wp-content/themes/chuo-fudousan/img/common/navi-tel.svg)
  no-repeat center / cover;
}

/* mv */
.mv__wrapper{
  height: calc(100vh - 10rem);
  display: flex;
  align-items: flex-end;
  min-height: 50rem;
}

.mv__title{
  margin-bottom: 160px;
}

.mv__title > span{
  background-color: #fff;
  color: #0fafaa;
  letter-spacing: .05em;
  display: inline-block;
  font-weight: bold;
  font-size: 55px;
  line-height: calc(50 / 34);
  padding: .5rem 1.5rem;
}

.mv__title > span:nth-child(n+2){
  margin-top: 30px;
}

.mv-icon{
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 18rem;
  height: 18rem;
  z-index: 10;
}

.mv-icon__btn a{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #279F9F;
  padding-top: 1.12rem;
  padding-bottom: 1.2rem;
  border: #fff 3px solid;
  border-radius: 50%;
}

.mv-icon__item1{
  width: 1.976rem;
}
.mv-icon__item2{
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  letter-spacing: .15em;
  color: #fff;
  text-align: center;
  margin-top: .3rem;
}
.mv-icon__item3{
  margin-top: .38rem;
}
.mv-icon__item4{
  width: 1.8rem;
  margin-top: 1.18rem;
}

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
    /*全体の高さ*/
  height:90px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-22px;
  top: -22px;
    /*テキストの形状*/
  font-family: 'Rubik', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: calc(19 / 16);
  font-weight: 700;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/* greeting */
.greeting{
  margin-top: 20rem;
  padding: 14.4rem 0 17.5rem;
  position: relative;
  color: #fff;
  background-color: #231F20;
  z-index: 8;
}

.greeting::after{
  content: "";
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/22214156_m.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .4;
  z-index: -1;
}

.greeting__content{
  max-width: 1000px;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
}

.greeting__content h4{
  font-size: 28px;
  line-height: calc(48 / 28);
  font-weight: 700;
  text-align: center;
}

.greeting__content p{
  font-size: 14px;
  line-height: calc(28 / 14);
  font-weight: 400;
  margin-top: 4rem;
}

/* buying */
.buying__wrapper{
  display: flex;
	/*height: 30rem;*/
}

.buying__wrapper--reverce{
  flex-direction: row-reverse;
	height: 30rem;
}

.buying__wrapper-left{
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 960 / 600;
}

.buying__wrapper-left1{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/laptop-3196481_1280.png);
	height: 315px;
}
.buying__wrapper-left2{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/entrepreneur-1340649_1280.png);
	height: 300px;
}
.buying__wrapper-left3{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/hands-3331229_1280.png);
	height: 300px;
}
.buying__wrapper-left4{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/entrepreneur-1340649_1280.png);
	height: 300px;
}
@media screen and (max-width:768px) {
.buying__wrapper-left3{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/hands-3331229_1280.png);
	height: 300px;
	margin-top: 0px;
	}}

.buying__wrapper-right{
  width: 50%;
  background-color: #F8F6F2;
  position: relative;
  z-index: 8;
}

.buying__wrapper-right::after{
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: -1;
}

.buying__wrapper-right1::after{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/グループ-2.png);
}
.buying__wrapper-right2::after{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/グループ-2.png);
}
.buying__wrapper-right4::after{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/グループ-2.png);
}
.buying__wrapper-right3::after{
  background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/グループ-2.png);
}

.buying__content{
  width: calc(720 / 960 * 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 8.2rem 0;
}

.buying__content-title{
  border-bottom: 1px solid #0fafaa;
  padding-bottom: 2rem;
}

.buying__content-title h4{
  font-size: 26px;
  line-height: calc(36 / 26);
  font-weight: 700;
  letter-spacing: .1em;
  border-left: 5px solid #0fafaa;
  padding-left: 10px;
}

.buying__content-title p{
  font-size: 13px;
  line-height: calc(33 / 13);
  font-style: italic;
  color: #279F9F;
  margin-left: 15px;
}

.buying__content-text{
  font-size: 14px;
  line-height: calc(28 / 14);
  font-weight: 400;
  margin-top: 4rem;
}

.buying-btn{
  margin-top: 20px;
}

/* company */
.company__container{
  background-image: url(/wp-content/themes/chuo-fudousan/img/company.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 1920 / 600;
  display: flex;
  align-items: center;
}

.company__inner{
  max-width: 1250px;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}

.company__content{
  width: 50%;
  margin-left: auto;
  padding: 50px 0;
}

.company__content h4{
  font-size: 24px;
  line-height: calc(48 / 24);
  font-weight: 700;
  color: #279F9F;
  border-bottom: 1px solid #279F9F;
  padding-bottom: 2rem;
}

.company__content p{
  font-size: 14px;
  line-height: calc(28 / 14);
  font-weight: 400;
  margin-top: 4rem;
}

/* outline */
.outline{
  background-color: #F8F6F2;
}

.outline__inner{
  max-width: 1050px;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}

.outline__title{
  color: #0fafaa;
}

.outline__items{
  font-size: 16px;
  line-height: calc(24 / 16);
  margin-top: 40px;
}

.outline__item{
  display: flex;
  padding: 0 3rem 3rem 3rem;
  border-bottom: 1px solid #CCCCCC;
  position: relative;
}
.outline__item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24rem;
  height: inherit;
  border-bottom: 2px solid #81D8D0;
}

.outline__item:nth-child(n+2){
  margin-top: 3rem;
}

.outline__item-title{
  min-width: 17rem;
  color: #186565;
  font-weight: 500;
}

.outline__item-content{
  margin-left: 40px;
  color: #231F20;
  font-weight: 400;
}

.outline__map{
  margin-top: 40px;
}

.outline__map iframe{
  height: 500px;
}

/* contact */
.contact{
  position: relative;
}
.contact::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EDEDE8;
  opacity: .9;
  z-index: -1;
}

.contact__inner{
  max-width: 1050px;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}

.contact__title{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title h3{
  font-size: 70px;
  line-height: calc(83 / 70);
  letter-spacing: .05em;
  font-weight: 700;
  color: #0fafaa;
}

.contact__title p{
  font-size: 22px;
  line-height: calc(28 / 22);
  letter-spacing: .1em;
  font-weight: 700;
  margin-top: 15px;
}

.contact__items{
  margin-top: 4rem;
}

.contact__item:nth-child(n+2){
  margin-top: 9rem;
}

.contact__item-title{
  color: #186565;
  font-size: 20px;
  line-height: calc(30 / 20);
  letter-spacing: .05em;
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}
.contact__item-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: inherit;
  border-bottom: 2px solid #0fafaa;
}

.contact__item-title span{
  font-family: 'Rubik', sans-serif;
  background-color:#0fafaa;
  color: #fff;
  font-size: 15px;
  line-height: calc(23 / 15);
  font-weight: 500;
  text-align: center;
  display: inline-block;
  min-width: 150px;
  border-radius: 100px;
  padding: 2px 0 1.5px;
  margin-bottom: 4px;
}

.contact__item-text{
  font-size: 15px;
  line-height: calc(30 / 15);
  font-weight: 400;
  margin-top: 3rem;
}

.contact__line,
.contact__item-content2{
  background-color: #fff;
  border: 2px solid #279F9F;
  border-radius: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0 3.35rem;
  margin-top: 2rem;
}
.contact__item-content a{
  display: none;
}

.contact__item-tel{
  display: flex;
  align-items: center;
}

.contact__item-tel__right{
  font-size: 28px;
  line-height: calc(33 / 28);
  font-weight: 700;
  margin-left: 1rem;
  color: #186565;
  font-family: 'Rubik', sans-serif;
}

.contact__tel-text{
  font-size: 14px;
  line-height: calc(20 / 14);
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
}

.contact__line a{
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 253px;
  padding: 1.1rem 0;
  margin-top: 10px;
}

.contact__line-content{
  text-align: center;
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 400;
  position: relative;
  margin-left: 20px;
}
.contact__line-content::before{
  content: "";
  position: absolute;
  left: -30px;
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(/wp-content/themes/chuo-fudousan/img/common/line-icon.svg)
  no-repeat center / contain;
  transition: .3s;
}

/* contact-form */
.form-items{
  margin-top: 3rem;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.form-item{
  display: flex;
  background-color: #186565;
}
.form-item:nth-child(n+2){
  margin-top: 1rem;
}
.form-title-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(320 / 900 * 100%);
  padding: 2.5rem 1.6rem 2.3rem 1.9rem;
}
.form-title{
  color: #fff;
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 500;
}
.required{
  color: #fff;
  font-size: 12px;
  line-height: calc(30 / 12);
  font-weight: 300;
  background-color: #E60C20;
  display: inline-block;
  padding: 0 .5rem;
}
.any{
  color: #231F20;
  font-size: 12px;
  line-height: calc(30 / 12);
  font-weight: 300;
  background-color: #EDEDE8;
  display: inline-block;
  padding: 0 .5rem;
}
.form-input-wrapper{
  display: inline-block;
  width: calc(580 / 900 * 100%);
  padding: 1.5rem 1.4rem;
  background-color: #D9D9D9;
  font-size: 15px;
  line-height: calc(30 / 15);
  font-weight: 500;
  text-align: left;
}
.form-input-wrapper input[type=text],
.form-input-wrapper input[type=email],
.form-input-wrapper input[type=tel],
.form-input-wrapper select,
.form-input-wrapper textarea{
  width: 100%;
  font-size: 15px;
  line-height: calc(30 / 15);
  font-weight: 500;
  border: 1px solid #D9D9D9;
}
.form-input-wrapper input[type=text],
.form-input-wrapper input[type=email],
.form-input-wrapper input[type=tel],
.form-input-wrapper textarea{
  padding: 1rem 2rem;
  background-color: #fff;
}
.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder{
  color: #CDD6DD;
}
.form-input-wrapper p:nth-child(n+2){
  margin-top: 1rem;
}
.form-input-wrapper p{
  text-align: left;
  font-size: 15px;
  line-height: calc(2 / 1);
}
.form-input-wrapper textarea{
  height: 210px;
}
.form-title-wrapper--last{
  margin-bottom: auto;
}
.form-agree{
  text-align: center;
  margin-top: 3rem;
  /* margin-left: -3rem; */
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: 500;
  /* position: relative; */
}
.form-btn{
  margin-top: 6rem;
}
.form-btn .wpcf7-spinner{
  display: none;
}
.btn .wpcf7-spinner{
  display: none;
}
.form-policy{
  text-align-last: left;
  background-color: #fff;
}
.form-policy-items{
  margin-top: 3rem;
  height: 300px;
  overflow: scroll;
  padding: 1.6rem 7rem 1.6rem 4rem;
  border: 1px solid #D9D9D9;
  font-size: 15px;
  list-style: calc(30 / 15);
  font-weight: 400;
}
.form-policy-item:nth-child(n+2){
  margin-top: 30px;
}

.form-btn{
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #333;
}
.form-btn .confirm{
  display: block;
}
.form-btn>*{
  display: block;
  min-width: 300px;
  background-color: #fff;
  border: .5px solid #707070;
  text-align: center;
  border-radius: 0;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
  padding: 1.3rem 4rem;
  position: relative;
}
.form-btn>* input{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.form-btn>*::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(45deg);
}
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.form-btn .back,
.form-btn .send{
  display: block;
}
.form-btn .back{
  background-color: #fff;
  opacity: 1;
}
.form-btn .send{
  margin-left: 3rem;
}

/* contact-thanks */
.contact-thanks{
  background-color: #fff;
  padding: 220px 0 120px;
}

.contact-thanks__content{
  text-align: center;
}

.contact-thanks__title{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-thanks__title h3{
  font-size: 36px;
  line-height: calc(43 / 36);
  font-weight: 700;
  color: #186565;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
}
.contact-thanks__title p{
  font-size: 18px;
  line-height: calc(36 / 18);
  font-weight: 700;
  margin-top: 5px;
  position: relative;
  padding-bottom: 20px;
}
.contact-thanks__title p::after{
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 77px;
  height: inherit;
  border-bottom: 1px solid #231F20;
}
.contact-thanks__title--404 p::after{
  left: 120px;
}

.contact-thanks__text{
  font-size: 14px;
  line-height: calc(28 / 14);
  font-weight: 400;
  margin-top: 3rem;
}

.contact-thanks__text p:nth-child(n+2){
  margin-top: 3rem;
}

.contact-thanks__btn{
  margin-top: 5rem;
}

.contact-thanks__btn a{
  background-color: #F8F6F2;
  min-width: 290px;
  display: inline-block;
  text-align: center;
  padding: 14px 0;
  border-radius: 6px;
  font-size: 16px;
  line-height: calc(24 / 16);
  border: 1px solid #231F20;
}

/* footer */
.footer{
  padding: 9rem 0 1rem;
  position: relative;
  bottom: 0;
  background-color: #0fafaa;
}

.footer__wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5rem;
  padding-right: 6rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo{
  width: 35%;
}

.footer__wrapper-left p{
  font-size: 13px;
  line-height: calc(26 / 13);
  font-weight: 400;
  margin-top: 1rem;
}

.footer__wrapper-right{
  width: 350px;
}

.footer__wrapper-right ul{
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
  line-height: calc(24 / 15);
  font-weight: 400;
}

.footer__wrapper-right ul li{
  width: calc(144 / 350 * 100%);
}

.footer__wrapper-right ul li:nth-child(2n){
  margin-left: 6rem;
}

.footer__wrapper-right ul li:nth-child(n+3){
  margin-top: 1.2rem;
}

.footer__wrapper-right ul li a{
  padding: 1rem 0;
}

.footer__wrapper-right ul li a::before{
  content:'-';
  display: inline-block;
  margin-right: .4rem;
}

.footer__text{
  font-size: 14px;
  line-height: calc(32 / 14);
  font-weight: 400;
  margin-top: 16.8rem;
  text-align: center;
}

@media screen and (max-width: 1500px){

  .header__inner{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .navi-tel{
    margin-left: 1rem;
  }
  .navi-tel span{
    font-size: 25px;
  }
  .navi-main ul li a{
    padding:2rem 1.2rem;
  }

}

@media screen and (max-width: 1100px){

  .navi-main ul li a{
    padding:2rem .2rem;
  }
  .navi-tel{
    margin-left: .1rem;
  }

}

@media screen and (max-width: 1000px){

  .header__text{
    margin-top: 2rem;
    margin-bottom: 1rem;
    margin-left: .5rem;
  }
  .header__logo{
    padding: 3.5rem 0 2rem;
  }
  
  /*==ナビゲーション全体の設定*/
  .navi{
    display: flex;
  }
  .navi-tel span{
    font-size: 20px;
  }

  /* mv */
  .mv__wrapper{
    align-items: center;
    height: calc(100vh - 100px);
  }
  .mv__title{
    margin-bottom: 10px;
  }

}

@media screen and (max-width: 880px){

  .header__inner{
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .navi-main{
    font-size: 13px;
  }

}

@media screen and (max-width: 767px){

  html{
    font-size: 62.5%;
  }

  .header{
    height: 7.6rem;
  }

  .header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 7rem;
  }

  .navi{
    display: none;
  }
  
  .header__logo{
    padding: 2.35rem 0 1.45rem;
  }
  
  .header__logo a img{
    width: 15.436rem;
  }

  .header__icon{
    margin-top: 1rem;
    display: flex;
  }

  .header__icon-mail{
    margin-left: 1rem;
  }


  /* mv */
  .mv__wrapper{
    height: calc(100vh - 7.6rem);
    display: flex;
    align-items: center;
  }
  
  .mv__title{
    margin-bottom: 0;
    margin-top: 10rem;
  }
  
  .mv__title > span{
    font-size: 2.6rem;
    line-height: calc(27 / 18);
    padding: .5rem 1.2rem;
  }

  .mv-icon{
    bottom: 0;
    right: 0;
    width: 100%;
    height: initial;
  }
  
  .mv-icon__btn a{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #279F9F;
    padding-top: 0;
    padding-bottom: 0;
    border: #279F9F 1px solid;
    border-radius: initial;
  }
  .mv-icon__item2{
    font-size: 14px;
    line-height: calc(21 / 16);
    letter-spacing: 0;
    margin-top: 0;
    width: calc(169 / 390 * 100%);
  }
  .mv-icon__item3{
    margin-top: 0;
    width: calc(221 / 390 * 100%);
    background-color: #fff;
    padding-top: 5px;
    padding-bottom: 15px;
  }
  .mv-icon__item3 img{
    width: calc(180.79 / 221 * 100%);
    margin-left: auto;
    margin-right: auto;
  }

  /* greeting */
  .greeting{
    margin-top: 9rem;
    padding: 5rem 0;
  }

  .greeting::after{
    background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/22214156_m.png);
  }

  .greeting__content{
    max-width: 550px;
    padding: 0 21px;
    margin-top: 4rem;
  }

  .greeting__content h4{
    font-size: 20px;
    line-height: calc(36 / 20);
  }

  .greeting__content p{
    font-size: 13px;
    line-height: calc(26 / 13);
    margin-top: 3rem;
  }

  /* buying */
  .buying__wrapper{
    display: block;
  }

  .buying__wrapper-left{
    width: 100%;
    aspect-ratio: 390 / 243;
  }

  .buying__wrapper-right{
    width: 100%;
  }

  .buying__content{
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 3.5rem;
  }

  .buying__content-title{
    padding-bottom: 1rem;
  }

  .buying__content-title p{
    font-size: 14px;
    line-height: calc(36 / 13);
  }

  .buying__content-text{
    font-size: 13px;
    line-height: calc(26 / 13);
    margin-top: 2rem;
  }

  .buying-btn{
    text-align: center;
  }

  /* company */
  .company__container{
    background-image: url(/wp-content/themes/chuo-fudousan/img/company-sp.jpg);
    aspect-ratio: initial;
    display: block;
    padding: 9rem 0;
  }

  .company__inner{
    max-width: 550px;
  }

  .company__content{
    width: 100%;
    margin-left: 0;
    padding: 3rem 2rem;
    position: relative;
    z-index: 8;
  }
  .company__content::after{
    content: "";
    background-color: #fff;
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .company__content h4{
    font-size: 18px;
    line-height: calc(36 / 18);
    font-weight: 700;
    padding-bottom: 1rem;
    text-align: center;
  }

  .company__content p{
    font-size: 13px;
    line-height: calc(26 / 13);
    font-weight: 400;
    margin-top: 2rem;
  }

  /* outline */

  .outline__inner{
    max-width: 650px;
    padding: 0 35px;
  }

  .outline__items{
    font-size: 13px;
    line-height: calc(19 / 13);
  }

  .outline__item{
    padding: 0 0 1.5rem 0;
  }
  .outline__item:before {
    width: 9rem;
  }

  .outline__item:nth-child(n+2){
    margin-top: 1.5rem;
  }

  .outline__item-title{
    min-width: 8rem;
  }

  .outline__item-content{
    margin-left: 10px;
  }

  .outline__map{
    margin-top: 30px;
  }

  .outline__map iframe{
    height: 400px;
  }

  /* contact */
  .contact__inner{
    max-width: 65rem;
    padding: 0 3.5rem;
  }

  .contact__line{
    width: 100%;
    border-radius: 2rem;
    padding: 3.49rem 3.35rem;
  }

  .contact__item-content a{
    background-color: #fff;
    border: 2px solid #279F9F;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2.6rem 3.5rem;
    margin-top: 2rem;
  }
  .contact__item-content2{
    display: none;
  }
  
  .contact__items{
    margin-top: 4rem;
  }
  
  .contact__item:nth-child(n+2){
    margin-top: 4rem;
  }
  
  .contact__item-text{
    font-size: 13px;
    line-height: calc(26 / 13);
  }
  
  .contact__item-tel{
    display: flex;
    align-items: center;
  }
  
  .contact__tel-text{
    font-size: 13px;
    line-height: calc(26 / 13);
  }

  /* contact-form */
  .form-items{
    width: 100%;
  }
  .form-item{
    display: block;
  }
  .form-item:nth-child(n+2){
    margin-top: 1rem;
  }
  .form-title-wrapper{
    width: 100%;
  }
  .form-input-wrapper{
    width: 100%;
  }
  .form-btn{
    margin-top: 3rem;
  }
  .form-policy-items{
    margin-top: 3rem;
    height: 20rem;
    padding: 1.6rem 3rem 1.6rem 2rem;
    font-size: 1.4rem;
  }
  .form-policy-item:nth-child(n+2){
    margin-top: 3rem;
  }
  .form-btn .send{
    margin-left: 0;
    margin-top: 3rem;
  }
  .wpcf7-previous{
    display: block;
  }

  /* contact-thanks */
  .contact-thanks{
    padding: 120px 0 50px;
  }

  /* footer */
  .footer{
    padding: 6rem 0 10rem;
  }

  .footer__wrapper{
    display: block;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__logo{
    width: 150px;
  }

  .footer__wrapper-left p{
    font-size: 13px;
    line-height: calc(26 / 13);
    font-weight: 400;
    margin-top: 1rem;
  }

  .footer__wrapper-right{
    display: none;
  }

  .footer__text{
    margin-top: 8rem;
  }

}

@media screen and (max-width: 390px) {
  html{
    font-size: calc(10 / 390 * 100vw);
  }  
}

#qa dl {
    padding-top: 40px;
}
#qa dl dt {
    background-color: #fff;
    border: 2px solid #279F9F;
    padding: 22px 60px;
    position: relative;
}
#qa dl dt:before {
    content: 'Q';
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #007E66;
    position: absolute;
    top: 24px;
    left: 30px;
}
#qa dl dd {
    font-size: 16px;
    padding: 20px 60px 0;
    position: relative;
}
#qa dl dd:before {
    content: 'A';
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #E1344C;
    position: absolute;
    top: 20px;
    left: 30px;
}
.h-20 {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
}
.h-22 {
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
}
@media screen and (max-width: 767px){
#qa dl {
    padding-top: 20px;
}
#qa dl dt {
    font-size: 10px;
    padding: 16px 7px 16px 51px;
    line-height: 18px;
}
	#qa dl dt:before {
    top: 19px;
    left: 25px;
}
	#qa dl dd {
    font-size: 11px;
    padding: 17px 20px 0 55px;
}
	#qa dl dd:before {
    top: 19px;
    left: 25px;
}
}

#flow .box.green {
    border-bottom: 2px solid #007E66;
}
#flow .box+.box {
    padding-top: 70px;
}
#flow .box.green:before {
    border-top-color: #007E66;
}
#flow .box:before {
    content: '';
    border-width: 40px 75px 0 75px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
#flow .box .photo {
    width: 24%;
	margin: 0 auto;
}
#flow .box .col {
    width: 60%;
}
#flow .box.green h3 {
    background-color: #007E66;
}
#flow .box h3 {
    width: 290px;
    border-radius: 6px;
    color: #fff;
    box-sizing: border-box;
    padding: 7px 10px 7px 70px;
    position: relative;
}
#flow .box h3 span {
    display: flex;
    align-items: center;
    width: 48px;
    border-right: 2px dashed #fff;
    font-weight: 500;
    font-size: 32px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
}
#flow .box .txt {
    font-size: 19px;
    padding-top: 10px;
}
#flow .box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 4%;
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
}
#flow .box.red {
    border-bottom: 2px solid #007E66;
}
#flow .box.red:before {
    border-top-color:#007E66;
}
#flow .box.red h3 {
    background-color: #007E66;
}

@media screen and (max-width: 767px){
#flow .box {
    flex-direction: row;
    gap: 20px;
    padding: 20px 15px;
}
	#flow .box .photo {
    width: 100%;width: 50%;
    margin: 0 auto;
}
	#flow .box h3 {
    width: calc(100% - 5px);
    font-size: 20px;
}
	#flow .box .txt {
    font-size: 15px;
}
	#flow .box .col {
    width: 100%;
}
}

.service-flex{
	padding-top:20px;
	display:flex;
	justify-content: space-between;
}
.service-flex .con{
	display:flex;
	width:30%;
	flex-direction: column;
	padding:0 10px;
}
.service-flex .img{
	    width: 170px;
    margin: 0 auto;
}
.service-flex .txt{
	font-size:1.4rem;
	padding-top:10px;
	    text-align: center;
}

@media screen and (max-width: 767px){
	.service-flex{
	    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
	.service-flex .txt{
	font-size:1.5rem;
	padding:15px 0 25px 0;
	    text-align: center;
}
	.service-flex .con{
	display:flex;
	width:90%;
	flex-direction: column;
	padding:0 10px;
}
	.service-flex .img {
    width: 100px;
    margin: 0 auto;
    padding-top: 15px;
}
}

/*PCでは無効（改行しない）*/
.spbr{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .spbr{
        display: block;
    }
}

@media screen and (max-width: 767px){
	.buying__content-title h4{
  font-size: 20px;
  line-height: calc(36 / 26);
  font-weight: 700;
  letter-spacing: .1em;
  border-left: 5px solid #0fafaa;
  padding-left: 10px;
}
}

table{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 50%;
	    margin:0 auto;
}
tr{
    background-color: white;
}
table tr:last-child{
  border-bottom:solid 1px #ddd;
}

table th{
  text-align: center;
  padding: 10px 0;
  border-right:solid 1px #ddd;
  border-left:solid 1px #ddd;
  width: 155px;
	
	  background-color:#b6a889;
  color: white;
	font-size: 1.7rem;
}

/*table th:nth-child(2){
  background-color:#b6a889;
  color: white;
	font-size: 1.7rem;
}
table th:nth-child(3){
  background-color:#b6a889;
  color: white;
	font-size: 1.7rem;
}
table th:nth-child(4){
  background-color:#b6a889;
  color: white;
	    font-size: 1.7rem;
}

table th:nth-child(1){
  background-color:#b6a889;
	color: white;
	    font-size: 2rem;
}*/

table tr:nth-child(1) td{
  font-size: 30px;
	color:#e04040;
}
table tr:nth-child(2) td{
  font-size: 26px;
}
table tr:nth-child(3) td{
  font-size: 20px;
}
table tr:nth-child(4) td{
  font-size: 26px;
}
table td{
  text-align: center;
  padding: 7px 0;
  border-right:solid 1px #ddd;
  border-left:solid 1px #ddd;
  width: 155px;
	font-size: 2rem;
}

table td a{
  background-color: #25b327;
  color: white;
  padding:5px 20px;
  border-radius: 30px;
  font-weight: bold;
}

table .popular{
  width: 180px;
}

table th.popular{
  position: relative;
}

table th.popular span.no1{
  position: absolute;
  top: -10px;
  left:calc(50% - 30px);
  background: #bdcc28;
  width: 60px;
  font-size: 10px;
  border-radius: 15px;
  line-height: 1;
  padding: 5px;
}

table th.popular span.inner{
  position: absolute;
  color:white;
  background-color: #f34955;
  left: 0;
  bottom: 0;
  display: block;
  width: 180px;
  padding: 10px 0;
}

@media screen and (max-width:768px) {
	table {width:100%;}
	table .popular {width: 25%;}
	table th {width: 25%;}
	table tr:nth-child(3) td {
    font-size: 12px;
}
	table tr:nth-child(2) td {
    font-size: 18px;
}
}
#flow .box:last-child::before{
content:none;	
}
.bg-fff{
	background-color:#F8F6F2;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
    position: fixed;
    top: 21px;
    right: 20px;
    z-index: 2;
    width: 35px;
    height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
    color: #0fafaa;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0fafaa;
}
.menu__item{
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  box-sizing: border-box;
font-size: 2rem;
    font-family: 'Rubik', sans-serif;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
}

/* -- PS SP切り替え -- */
.dis_pc {display: block !important;}
.dis_sp {display: none !important;}

@media only screen and (max-width: 750px){
     .dis_pc {display: none !important; }
     .dis_sp {display: block !important; }
}

.t1{
	width:40%;
	margin:0 auto;
}
.t2 th{
    background-color: #b6a889 !important;
    color: white;
    font-size: 2rem;
}
.t1 th {
    text-align: center;
    padding: 10px 0;
    border-right: solid 1px #ddd;
    border-left: solid 1px #ddd;
    width: 155px;
    background-color: #c82d2d;
    color: white;
    font-size: 1.7rem;
}
@media only screen and (max-width: 750px){
	.t1 {
    width: 80%;
    margin: 0 auto;
}
}



/* -- PS SP切り替え -- */
.dis_pc {display: block !important;}
.dis_sp {display: none !important;}

@media only screen and (max-width: 750px){
     .dis_pc {display: none !important; }
     .dis_sp {display: block !important; }
}
/* -- 追従バナー -- */
.fuji_fixed{
    position: fixed;
    bottom: 10px;
    right: -15px;
    padding: 6px 6px;
    z-index: 9999;
    width: 7%;
}
@media only screen and (max-width: 750px){
.fuji_fixed {
    position: fixed;
    bottom: -5px;
    right: 0;
    padding: 0 0 0 0;
    z-index: 9999;
    width: auto;
}
}


/*ここから認証追加*/
.buying__wrapper-left4 {
    background-image: url(https://translation.la-org.com/wp-content/uploads/2024/05/29388530_m.png);
    height: 300px;
}

@media only screen and (max-width: 768px){
.buying__wrapper-left1 {
    margin-top: 150px;
    background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/laptop-3196481_1280.png);
    height: 315px;
}
    .buying__wrapper-left3 {
        background-image: url(https://translation.la-org.com/wp-content/uploads/2023/08/hands-3331229_1280.png);
        height: 300px;
        margin-top: 0px;
    }	
	.buying__wrapper-left4 {
    background-image: url(https://translation.la-org.com/wp-content/uploads/2024/05/29388530_m.png);
    height: 230px;
}
}
/* -- PS SP切り替え -- */
.dis_pc {display: block !important;}
.dis_sp {display: none !important;}

@media only screen and (max-width: 750px){
     .dis_pc {display: none !important; }
     .dis_sp {display: block !important; }
}
