@charset "UTF-8";
/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");
/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
/* ========================================================

=========================================================*/

.toiawase .toiawase-container .column-main{
  margin-bottom: 100px;
}

@media screen and (max-width: 599px){
  .toiawase .toiawase-container .column-main{
    margin-bottom: 70px;
  }
}

.toiawase.thanks .toiawase-container .column-main{
  margin-bottom: 0;
}


.toiawase .toiawase-container h3.tit {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}

.toiawase .toiawase-container .txt-box p {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .txt-box p {
    margin-bottom: 35px;
    padding-bottom: 0;
  }
}

.toiawase .toiawase-container .txt-box ul {
  margin-bottom: 30px;
  padding-left: 15px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .txt-box ul {
    margin-bottom: 8vw;
    padding-left: 5.333vw;
  }
}

.toiawase .toiawase-container .txt-box ul li {
  margin-bottom: 10px;
  list-style: decimal outside;
}



/* 簡易ページ------- */

.contactscontents-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.7rem;
  margin-bottom: 37px;
}

@media screen and (max-width: 599px) {
  .contactscontents-wrap:nth-child(3) {
    padding-bottom: 0;
  }
}

.contactscontents-form {
  width: 100%;
}

.contactscontents-form tr {
  display: flex;
  align-items: center;
  padding: 17px;
  border-bottom: 1px solid #f2f4f5;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .contactscontents-form tr {
    flex-direction: column;
    padding: 0;
    margin-bottom: 18px;
    border: none;
  }
}

.contactscontents-form tr:first-child {
  border-top: none;
  padding-top: 0;
}

.contactscontents-form tr:nth-last-of-type(1) {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .contactscontents-form tr:nth-last-of-type(1) {
    padding-bottom: 0;
    margin-bottom: 19px;
  }
}

.contactscontents-form th {
  width: 250px;
  font-weight: bold;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .contactscontents-form tr th {
    margin-bottom: 12px;
    width: 100%;
  }
}

.contactscontents-form th label {
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .contactscontents-form th label {
    font-size: 14px;
  }
}

.contactscontents-form td {
  width: 70%;
  display: block;
}

.contactscontents-form .text td {
  height: 140px;
}

@media screen and (max-width: 599px) {
  .contactscontents-form td {
    width: 100%;
  }
}

.contactscontents-form th span {
  background-color: #ff9d00;
  color: #fff;
  display: inline-block;
  margin: 0 0 1px 10px;
  padding: 3px 6px;
  line-height: 1.2;
  text-align: center;
  width: fit-content;
  border-radius: 3px;
  font-size: 12px;
}

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0.5rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  background-color: #F5F5F5;
  background-clip: padding-box;
  border: 1px solid #DBDBDB;
}

.contactscontents-form tr:nth-last-of-type(1) input {
  margin-bottom: 0;
}

.contactscontents-btnbox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.contactscontents-form label {
  display: inline-block;
}

.contactscontents-form label::after {
  display: none;
}

.contactscontents-form input,
.contactscontents-form textarea {
  border: none;
  background-color: #f2f4f5;
  border-radius: 3px;
  padding: 25px;
  font-size: 16px;
  margin-bottom: 0;
}

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

  .contactscontents-form input,
  .contactscontents-form textarea {
    font-size: 14px;
    margin-right: 0;
  }
}

.contactscontents-form textarea {
  width: 100%;
  height: 140px;
}

.contactscontents-wrap p {
  margin-bottom: 16px;
}

.pb-text {
  padding-bottom: 20px;
  text-align: center;
  color: #0081D7;
}

@media screen and (max-width: 599px) {
  .toiawase .contactscontents-wrap .pb-text {
    font-size: 13px;
    margin-bottom: 9px;
  }
}

.contactscontents-btnbox input:hover {
  opacity: 0.7;
}

.contactscontents-btnbox input {
  border-radius: 0.6rem;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  height: 70px;
  margin: 0 auto;
  width: 300px;
  text-align: center;
  background: #F95239;
}

@media screen and (max-width: 599px) {
  .contactscontents-btnbox input {
    width: 270px;
    height: 63px;
    font-size: 19px;
  }
}

.contactscontents-btnbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(0, -50%) rotate(45deg);
}

.toiawase .toiawase-container .colum_ttl {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .colum_ttl {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}

.toiawase .toiawase-container .thanks {
  border: none;
}

.toiawase .toiawase-container .inr .text-box {
  background-color: #f5f5f5;
  padding: 40px 50px 56px;
  margin-bottom: 58px;
  margin-top: -3px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .inr .text-box {
    margin-bottom: 40px;
    padding: 25px;
  }
}

.toiawase .toiawase-container .inr .text-box>.item_text {
  font-size: 24px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .inr .text-box>.item_text {
    padding-top: 0;
    font-size: 16px;
  }
}

.item_texts {
  margin-top: 32px;
}

@media screen and (max-width: 599px) {
  .item_texts {
    margin-bottom: 30px;
  }
}

.toiawase .toiawase-container .btn-box {
  margin: 0 auto;
  width: 315px;
}

.toiawase .toiawase-container .btn-box a {
  background: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .toiawase .site-footer .sppt {
    padding-top: 60px;
  }
}

/* shiryou */

.toiawase .toiawase-container .shiryou .inr .item_text {
  margin-bottom: 40px;
}

.toiawase .toiawase-container .shiryou .inr .row {
  display: flex;
  flex-direction: row-reverse;
  background: #f5f5f5;
  margin-bottom: 58px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .row {
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}

.toiawase .toiawase-container .shiryou .inr .text-box {
  padding: 45px 45px 65px 45px;
  margin: 0;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box {
    padding: 25px 25px 38px 25px;
  }
}

.toiawase .toiawase-container .shiryou .inr .img-box {
  padding: 45px 0 24px 45px;
  margin-top: 13px;
}

.toiawase .toiawase-container .shiryou .inr .text-box h4 {
  font-size: 19px;
}

.toiawase .toiawase-container .shiryou .inr .text-box p {
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box h4 {
    font-size: 15px;
  }

  .toiawase .toiawase-container .shiryou .inr .text-box p {
    font-size: 14px;
    margin-bottom: 36px;
  }
}

.toiawase .toiawase-container .shiryou .inr .text-box .btn-box {
  margin: 14px auto 0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box .btn-box {
    width: 90%;
  }
}

.toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid {
  display: block;
  position: relative;
  padding: 12px 35px 10px 15px;
  background: transparent linear-gradient(260deg, #ed4c4c 0%, #ff9d00 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  font-size: 19px;
  border: none;
  height: 50px;
  width: 450px;
  right: 72px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid {
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    right: auto;
  }
}

.toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid::before {
  border-top: 0.2rem solid #fff;
  border-left: 0.2rem solid #fff;
  top: 43%;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid::before {
    right: 4%;
  }
}

.toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid span {
  position: absolute;
  right: -2.5%;
  top: 11%;
  border-radius: 40px;
  width: 440px;
  display: inline-block;
  margin-right: 16px;
  padding: 5px;
}

@media screen and (max-width: 599px) {
  .toiawase .toiawase-container .shiryou .inr .text-box .btn-radius-solid span {
    width: 97%;
    font-size: 15px;
    position: absolute;
    top: 6px;
    right: 3px;
    margin-right: 0;
    border: none;
  }
}

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

  .toiawase .toiawase-container .shiryou .inr .img-box,
  .toiawase .toiawase-container .shiryou .inr .img-box img {
    width: 100%;
    height: auto;
  }
}

.toiawase .site-footer .foot-nav-bottom {
  height: auto;
}