@charset "UTF-8";

/*変数*/
:root {
  --main_color: #00775d;
  --ttl_color: #96be24;
  --txt_color: #816646;
  --hover_color: #96be24;
  --en_font: "Hiragino Maru Gothic ProN",'Rounded Mplus 2p',"Arial", sans-serif;
}
/*呼び出し方は var(--main_color)*/

/*フォント*/
@font-face {
  font-family: 'Rounded Mplus 2p';
  src: url('/fonts/rounded-mplus-2p-regular.woff2') format('woff2'),
       url('/fonts/rounded-mplus-2p-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*ベース*/
p, li, a, dt, dd, address, th, td, label, input, textarea{
  font-size: 1rem;
  line-height: 2;
  color: var(--txt_color);
}
.inner{
  max-width: 1200px;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 640px){
  .inner{
    width: 75%;
  }
  p, li, a, dt, dd, address, th, td, label, input, textarea{
  line-height: 1.8;
  }
}
@media screen and (max-width: 425px){
  .inner{
    width: 85%;
  }
}

/*横並び*/
.column{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px){
  .column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.column-reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px){
  .column-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*見出し*/
.ttl{
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
  color: var(--main_color);
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 5%;
  position: relative;
}
.ttl::before, .ttl::after{
  content: "";
  position: absolute;
  transform: translate(50%, -50%);
}
.ttl::before{
  background: url(../../assets/img/ttl_deco01.svg) no-repeat center center / contain;
  width: 20%;
  height: 3rem;
  top: -40%;
  right: 50%;
}
.ttl::after{
  background: url(../../assets/img/ttl_deco02.svg) no-repeat center center / contain;
  width: 12vh;
  height: 2.5rem;
  bottom: -70%;
  right: 50%;
}
.ttl.dot{
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0;
  margin-left: 2.5rem;
  position: relative;
}
.ttl.dot::before{
  content: "";
  position: absolute;
  background: url(../../assets/img/h3_important.svg) no-repeat center center / contain;
  width: 2rem;
  height: 100%;
  top: 50%;
  left: -4rem;
}
.ttl.dot::after{
  content: none;
}
@media screen and (max-width: 768px){
  .ttl{
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10%;
  }
  .ttl::before{
    width: 9vh;
  }
  .ttl::after{
    width: 9vh;
    bottom: 0;
    top: 115%;
  }
  .ttl.dot{
    font-size: 1.4rem;
    margin: 0 0 3% 1.5rem;
  }
  .ttl.dot::before{
    height: 3.5rem;
    left: -3rem;
  }
}
.tab{
  display: none;
}
.sp{
  display: none;
}
@media screen and (min-width: 1000px){
  .sp{
    display: block;
  }
}
@media screen and (max-width: 1000px){
  .tab{
    display: block;
  }
}


/*ボタン*/
.btn{
  font-size: 1.65rem;
  position: relative;
  padding: 5% 4%;
  text-align: center;
  display: table;
  margin: 1% 0;
  background: #fdb71d;
  color: #fff;
  font-weight: bold;
  transition: .4s;
  border-radius: 9% 18.6% / 43px 36%;
  width: 40vw;
  max-width: 400px;
  transition:.4s;
}
.ul-link li:first-child a{
  background: var(--ttl_color);
}
.ul-link li a:hover{
  transform: translateY(5px);
}
.btn::before{
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 5px 8px 0 0;
  background: url(../../assets/img/img_link.svg) no-repeat right center / contain;
  position: relative;
  top: 8px;
}
.ul-link li:last-child a{
  color: #fff;
  background: #317fc9;
  margin-top: 5%;
}
@media screen and (max-width: 1000px){
  .btn{
    max-width: 280px;
  }
}
@media screen and (max-width: 768px){
  .ul-link{
    flex-direction: column;
  }
  .ul-link li:first-child{
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 640px){
  .btn{
    font-size: 1.3rem;
    width: 90%;
    max-width: none;
    padding: 2% 4% 4%;
  }
}

/*セクション上下の余白を設定*/
.sec{
  padding: 140px 0;
}
@media screen and (max-width: 640px){
  .sec{
    padding: 80px 0;
    padding: 120px 0;
    /*margin: 10% 0;*/
  }
}
@media screen and (max-width: 425px){
  .sec{

  }
}

/*ヘッダー*/
#header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.header_wrap{
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1rem;
}
.header_wrap:after{
  content: "";
  position: absolute;
  background: url(../../assets/img/img_header_deco.svg) repeat center center / contain;
  width: 100%;
  height: 2rem;
  top: 99%;
  left: 0;
}
.header-logo{
  max-width: 175px;
  width: 25%;
  margin-left: 2%;
  transition:.4s;
}
.header-logo:hover{
  opacity: .7;
}
.header-logo.center{
  margin: auto;
}


@media screen and (max-width: 640px){
  .header_wrap {
    padding: 3rem 2rem;
  }
  .header-logo{
    width: 60%;
    padding: 1% 3%;
    position: absolute;
    left: 0;
    z-index: 99;
  }
  _::-webkit-full-page-media, _:future, :root .header-logo{
    top: 0;
    padding: 3%;
    }
  #header.thanks-parts .header-logo{
    position: relative;
    margin: auto;
  }

}
/*ナビゲーションのデザイン*/
.nav_content{
  width: 90%;
  display: flex;
  justify-content: end;
}
.nav_list{
  display: flex;
  justify-content: center;
  padding: 1% 2%;
}
.nav_list li{
  margin-right: 1.5rem;
}
.nav_list li:last-child{
  margin-right: 0;
}
.nav_list li:last-child::after{
  display: none;
}
.nav_list li:last-child a img{
  transition: .4s;
}
.nav_list li:last-child a img:hover{
  transform: translateY(5px);
}
.nav_list li a img {
    width: 2rem;
    height: 2rem;
    margin: auto;
}
.nav_list a{
  color: var(--main_color);
  transition: .4s;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding-bottom: 2px;
  position: relative;
}
/*contentのコメントアウトを外すと文字の頭にボッチがつきます*/
.nav_list a::before{
  /*  content: '';*/
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--main_color);
  vertical-align: middle;
  margin-right: .4rem;
}
.nav_list a:hover{
  color: var(--main_color);
  border-bottom: 2px solid var(--main_color);
  opacity: 0.7;
}

.nav_list.-footer{
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}
.nav_list.-footer a{
  color: #fff;
}
.nav_list.-footer li::after{
  background: #d1d1d1;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after{
  display: none;
}

/*バーガーメニュー*/
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

@media screen and (max-width: 1000px){
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open{
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    position: fixed;
    top: 1.5%;
    right: 1.5%;
    background: #a3d1af;
    border-radius: 50%;

  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span{
    background: #fdb71d;
  }
  .drawer_open span:before{
    background: #f1acaf;
  }
  .drawer_open span:after{
    background: #67c3d8;
  }
  /*ナビゲーションのデザイン*/
  .nav_content{
    width: 90%;
    max-width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    background: rgba(255,255,255,.8);
    transition: .5s;
    display: block;

  }
  .nav_list{
    flex-direction: column;
    align-items: center;
    background: none;
  }
  .nav_list li{
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #6a6a6a;
  }
  .nav_list li a{
    color: var(--txt_color);
    display: block;
    padding: 20px 6px;
    text-align: center;
  }
  .nav_list li::after{
    display: none;
  }
  .nav_list.-footer li{
    border-bottom: none;
  }
  .nav_list.-footer li a{
    padding: 5px 6px;
  }
}
@media screen and (max-width: 767px){
  .nav_list.-footer a{
    line-height: 1.6;
    padding: 3% 0;
  }
  .nav_list.-footer{
    flex-wrap: wrap;
  }
  .nav_list.-footer li{
    margin-right: 4%;
  }
  .nav_list.-footer li:last-child{
    margin-right: 0;
  }
}


@media screen and (max-width: 639px){
  .drawer_open{
    top: 5px;
  }
  .nav_list.-footer{
    margin-top: 4%;
    padding-top: 4%;
  }
}


#drawer_input:checked ~ .drawer_open{
  background: #a3d1af;
}

/*スクロールしたらナビゲーションに付与される*/
.fixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

#drawer_input:checked ~ .drawer_open span::before,
#drawer_input:checked ~ .drawer_open span::after{
  background: #fff;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  right: 0;
}

/*ファーストビュー*/
.fv{
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
}
.fv .copy-wrap{
  padding: 36% 0 6%;
}
.fv h1{
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  letter-spacing: 0.3rem;
  text-shadow: #333 1px 0 10px;
  position: relative;
  z-index: 10;
}
.fv h1::before, .fv h1::after{
  content: "";
  position: absolute;
  z-index: -10;
}
.fv h1::before{
  background: url(../../assets/img/img_copy01.svg) no-repeat center bottom / cover;
  width: 6rem;
  height: 6rem;
  top: -7%;
  left: 23%;
}
.fv h1::after{
  background: url(../../assets/img/img_copy02.svg) no-repeat center bottom / cover;
  width: 7rem;
  height: 7rem;
  top: 36%;
  right: 23%;
}
.vegas-content{
  padding: 0;
}
.fv p{
  color: #a5a5a5;
  text-align: center;
  font-family: var(--en_font);
}

/*ファーストビューの基準の位置を変更する*/
.fv .vegas-slide-inner{
/*  background-position: center bottom!important;*/
}

@media screen and (max-width: 768px){
  .fv .inner{
    width: 93%;
  }
  .fv .copy-wrap{
    padding: 40% 4% 30%;
  }
  .fv h1{
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .fv h1::before{
    left: 4%;
  }
  .fv h1::after{
    right: 4%;
    top: 22%;
  }
}
@media screen and (max-width: 640px){

  .fv .copy-wrap{
    padding: 65vh 0 14%;
  }
  .fv h1{
    font-size: 1.95rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 425px){
  .fv{
    height: 100vh;
  }

  .fv h1{
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .fv h1::before{
    background: url(../../assets/img/img_copy01.svg) no-repeat center bottom / contain;
    width: 3rem;
    height: 4rem;
    top: -37%;
    left: 4vw;
  }
  .fv h1::after {
    background: url(../../assets/img/img_copy02.svg) no-repeat center bottom / contain;
    width: 3rem;
    height: 4rem;
    top: 10%;
    right: 4vw;
  }
}

.sec-important{
  position: relative;
  background: #a3d1af;
  margin: 15% 0 10%;
  z-index: 10;
  padding-bottom: 130px;
}
.sec-important::before, .sec-important::after{
  content: "";
  position: absolute;
  left: 0;
}
.sec-important::before{
  background: url(../../assets/img/img_important-wrap_deco01.svg) no-repeat center center / cover;
  width: 100%;
  height: 44vh;
  top: -38vh;
}
.sec-important::after{
  background: url(../../assets/img/img_important-wrap_deco02.svg) no-repeat center center / cover;
  width: 100%;
  height: 28vh;
  top: 96%;
  z-index: -10;
}
.ttl-important{
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.3;
  position: relative;
  margin-bottom: 3rem;
}
.ttl-important::before,.ttl-important::after{
  content: "";
  position: absolute;
  background: url(../../assets/img/h2_important_deco.svg) no-repeat center center / contain;
  width: 3.5rem;
  height: 4rem;
}
.ttl-important::before{
  top: -10%;
  left: 18.5vw;
}
.ttl-important::after{
  transform: scale(-1, -1);
  bottom: -19%;
  right: 18.5vw;
}
.sec-important .item{
  width: 40%;
}
.sec-important .txt-box{
  width: 50%;
}
.sec-important .txt-box ul{
  margin-left: 1rem;
}
.sec-important .txt-box ul li{
  list-style: disc;
}
.sec-important .column:last-child{
  margin-bottom: 0;
}
.sec-important .column, .sec-important .column-reverse{
  background: #fff;
  border-radius: 25px;
  border: 2px dashed var(--main_color); 
  padding: 5%;
  align-items: center;
  margin-bottom: 10%;
  position: relative;
}
.sec-important .column:nth-of-type(1)::before,
.sec-important .column:nth-of-type(1)::after,
.sec-important .column-reverse::after,
.sec-important .column:nth-of-type(3)::before{
  content: "";
  position: absolute;
}
.sec-important .column:nth-of-type(1)::before{
  background: url(../../assets/img/img_important_deco01.svg) no-repeat center center / contain;
  width: 12%;
  height: 28%;
  top: -8%;
  right: -2%;
}
.sec-important .column:nth-of-type(1)::after{
  background: url(../../assets/img/img_important_deco02.svg) no-repeat center center / contain;
  width: 12%;
  height: 28%;
  bottom: -8%;
  left: -6%;
  z-index: -10;
}
.sec-important .column-reverse::after{
  background: url(../../assets/img/img_important_deco03.svg) no-repeat center center / contain;
  width: 21%;
  height: 36%;
  bottom: -10%;
  right: -3%;
}
.sec-important .column:nth-of-type(3)::before{
  background: url(../../assets/img/img_important_deco04.svg) no-repeat center center / contain;
  width: 19%;
  height: 34%;
  bottom: -4%;
  left: -2%;
}
@media screen and (max-width: 1000px){
  .sec-important::before{
    height: 28vh;
    top: -23vh;
  }
  .sec-important::after{
    height: 14vh;
    top: 100%;
  }
  .sec-important .column, .sec-important .column-reverse{
    width: 80%;
    margin: 10% auto;
    flex-direction: column;
    justify-content: center;
  }
  .sec-important .column:nth-of-type(1)::before {
    width: 19%;
    height: 10%;
    top: -3%;
    right: -6%;
  }
  .sec-important .column:nth-of-type(1)::after {
    width: 18%;
    height: 16%;
    bottom: -5%;
    left: -11%;
    z-index: -10;
  }
  .sec-important .column-reverse::after {
    width: 26%;
    height: 21%;
    bottom: -7%;
    right: -10%;
  }
  .sec-important .column:nth-of-type(3)::before {
    width: 16%;
    height: 13%;
    bottom: -4%;
    left: -12%;
  }
  .sec-important .txt-box{
    width: 90%;
  }
  .sec-important .item {
    width: 70%;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 768px){
  .ttl-important{
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 640px){
  .sec-important{
    padding-bottom: 0;
    margin-bottom: 10rem;
  }
  .sec-important::before{
    height: 21vh;
    top: -20vh;
  }
  .sec-important::after{
    background-position: 77%;
    height: 14vh;
    top: 99.7%;
  }
  .ttl-important::before, .ttl-important::after{
    width: 3rem;
    height: 3rem;
  }
  .ttl-important::before{
    left: 0;
  }
  .ttl-important::after{
    right: 0;
  }
  .sec-important .column, .sec-important .column-reverse{
    width: 95%;
  }
  .sec-important .item{
    width: 85%;
    margin-bottom: 5%;
  }
  .sec-important .txt-box{
    width: 100%;
  }
}
@media screen and (max-width: 425px){
  .sec-important::before{
    height: 21vh;
    top: -20vh;
  }
  .ttl-important{
    font-size: 2rem;
  }
  .ttl-important::before,.ttl-important::after{
    width: 2rem;
    height: 2rem;
  }
  .ttl-important::before{
    left: 5%;
    top: -30%;
  }
  .ttl-important::after{
    right: 5%;
    bottom: -30%;
  }
}


/*画像＋テキストの要素を横並びにする*/
.item-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item-list::after{
  content: '';
  display: block;
  width: 32%;
}
.item-list li{
  width: 32%;
}
.item-list picture{
  width: 100%;
  display: block;
}

@media screen and (max-width: 640px){
  .item-list li{
    width: 100%;
  }
  .item-list li:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }
  .item-list picture{
    margin-bottom: 0;
    margin: auto;
    width: 70%;
  }
  .item-list .ttl-sub{
    font-size: 1.2rem;
    width: 60%;
    margin-bottom: 2%;
  }
  .item-list li p{
  }
  .item-list .ttl-sub.center{
    text-align: left;
  }
}

@media screen and (max-width: 425px){
  .item-list picture, .item-list .ttl-sub, .item-list li p{
    float: none;
    width: 100%;
  }
}

/*li要素が4つ〜6つ以上の時*/
.item-list li:first-child:nth-last-child(4),
.item-list li:first-child:nth-last-child(4) ~ .item-list li,
.item-list li:first-child:nth-last-child(5),
.item-list li:first-child:nth-last-child(5) ~ .item-list li,
.item-list li:first-child:nth-last-child(6),
.item-list li:first-child:nth-last-child(6) ~ .item-list li{
  margin-bottom: 8%;
}

/*要素が2つの場合*/
.item-list.two{
  justify-content: center;
}
.item-list.two li{
  margin-right: 8%;
}
.item-list.two li:last-child{
  margin-right: 0;
}

.item-list picture{
  margin-bottom: 5%;
}
.item-list li:first-child picture img{
    object-position: 90%;
}
.item-list picture img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
@media screen and (max-width: 768px){

}

/*要素が4つの場合*/
.item-list.four li{
  width: 23%;
}
@media screen and (max-width: 1023px){
  .item-list.four{
    flex-wrap: wrap;
    justify-content: center;
  }
  .item-list.four li{
    width: 42%;
    margin-right: 8%;
    margin-bottom: 8%;
  }
  .item-list.four li:nth-child(3),.item-list.four li:nth-child(4){
    margin-bottom: 0;
  }
  .item-list.four li:nth-child(even){
    margin-right: 0;
  }
}

@media screen and (max-width: 640px){
  .item-list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .item-list.four li{
    width: 100%;
  }
  .item-list.four li:nth-child(3),.item-list.four li:nth-child(4){
    margin-right: 8%;
    margin-bottom: 8%;
  }
}

.sec-policy{

}
.ttl-policy{
  color: var(--main_color);
  text-align: center;
  font-size: 1.25rem;
  background: #fcf3e6;
  padding: 0.3rem;
  margin: -3rem auto 1.5rem;
  position: relative;
}



.sec-feature{
	background: url(../../assets/img/bg_feature.jpg) no-repeat center center / cover;
}
.sec-feature .column, .sec-feature .column-reverse{
  align-items: center;
  margin-bottom: 10%;
}
.sec-feature .item{
  width: 43%;
}
.sec-feature .txt-box{
  color: var(--txt_color);
  width: 50%;
}
.ttl-feature{
  color: #422c2c;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  position: relative;
  margin-bottom: 6%;
}
.ttl-feature:first-letter{
  color: var(--ttl_color);
  font-size: 3rem;
}
.ttl-feature::after{
  content: "";
	position: absolute;
	top: 97%;
  left: 0;
  width: 100%;
  height: 13px;
	background: url(../../assets/img/ttl_feature_deco.svg) no-repeat left center / cover;
}
.sec-feature .txt-box span{
  padding-bottom: 0.3rem;
  border-bottom: 1px dotted #422c2c;
}
@media screen and (max-width: 640px){
  .sec-feature .item{
    width: 100%;
    margin-bottom: 5%;
  }
  .sec-feature .txt-box{
    width: 100%;
  }
  .ttl-feature{
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 640px){
  .ttl-feature:first-letter{
    font-size: 2.3rem;
  }
}
.sec-greet .column{
  align-items: center;
}
.sec-greet .item{
  width: 40%;
}
.sec-greet .txt-box{
  width: 55%;
}
@media screen and (max-width: 640px){
  .sec-greet .item{
    width: 70%;
    margin-bottom: 5%;
  }
  .sec-greet .txt-box{
    width: 100%;
  }
}


.sec-company{

}
.sec-company img{
  margin-bottom: 5%;
  border-radius: 10px;
}
.sec-company .item{
  width: 47%;
}
.sec-company .data-list{
  width: 95%;
}
.ul-link{
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.ul-link li{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 1000px){
  .sec-company div.column{
    flex-direction: column;
  }
  .data-list .column{
    flex-direction: row!important; 
  }
  .sec-company .data-list{
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 768px){
  .sec-company .item{
    width: 35%;
  }
  .sec-company .data-list{
    width: 60%;
  }
  .data-list.column {
    width: 100%;
  }
  .ul-link li {
    width: 100%;
  }
}
@media screen and (max-width: 640px){
  .sec-company .column{
    flex-direction: column;
  }
  .sec-company .item{
    width: 100%;
  }
  .sec-company .data-list{
    width: 100%;
  }
  .ul-link{
    margin-top: 0.5rem;
  }
}


.sec-access{
  background: url(../../assets/img/bg_access.png) no-repeat center center / contain;
  padding: 5% 0 15%;
  margin-bottom: 5%;
}
.sec-access iframe{
  width: 100%;
  display: block;
  height: 30rem;
}
.access-p{
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px){
  .sec-access{
    margin-bottom: 10vh;
  }
}
@media screen and (max-width: 640px){
  .access-p{
    text-align: left;
  }
  .sec-access iframe{
    height: 15rem;
  }
}

/*メールフォーム*/
.mailform{
  position: relative;
  background: #f6f5ee;
  z-index: 10;
}
.mailform::before, .mailform::after{
  content: "";
  position: absolute;
}
.mailform::before{
  background: url(../../assets/img/img_contact_deco.svg) no-repeat 53% top / cover;
  width: 100%;
  height: 10vh;
  top: -10vh;
  z-index: -10;
}
.mailform::after{
  width: 100%;
  height: 100%;
  background: url(../../assets/img/bg_contact.svg) no-repeat center center / cover;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: -10;
}
.ttl-contact{
  font-size: 3rem;
  line-height: 1.6;
  text-align: center;
  color: var(--main_color);
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 5%;
  position: relative;
}
.ttl-contact::before, .ttl-contact::after{
  content: "";
  position: absolute;
  background: url(../../assets/img/h2_contact_deco.svg) no-repeat center center / contain;
  width: 28%;
  height: 45%;
  top: 33%;
}
.ttl-contact::before{
  transform: scale(-1, 1);
  left: 0;
}
.ttl-contact::after{
  right: 0;
}
.mailform p{
  text-align: center;
}

.formstyle {
  width: 80%;
  max-width: 800px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 5%;
  position: relative;
  border: 2px dashed var(--main_color);
}

.formstyle label {
  color: #422c2c;
  margin-bottom: 1%;
  width: 35%;
}

/*必須*/
.red {
  display: inline-block;
  background-color: #f1acaf;
  padding: 0 2%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}
/*任意*/
.gray {
  display: inline-block;
  background-color: #606060;
  padding: 0 1%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}

.formstyle select, .formstyle input, .formstyle textarea {
  width: 65%;
  background: #FFF;
  border: 1px solid #c9caca;
  padding: 1% 2%;
  margin: 0 0 3%;
  font-size: 1rem;
  color: #231815;
}

.formstyle .attachment-label{
  border: none;
  padding: 1% 2% 1% 0;
}

input.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px!important;
  height: 25px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  background-color: #d9d9d9;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  margin-bottom: 0;
  z-index: 10;
  border-radius: 7px;
}

.radiobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

label.radiotxt {
  margin: 0;
}

input.radio:hover {
  background: #9faab7;
}

input.radio:checked {
  background: #a7a7a7;
}

input.radio:checked::before {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "\f00c";
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  right: 0;
  margin: auto;
}

.formstyle textarea {
  height: 250px;
}

.privacy {
  padding: 20px;
  width: 80%;
  height: 200px;
  margin: 30px auto 10px;
  overflow-y: scroll;
  border: #c9caca 1px solid;
}
.privacy h2 {
  color: #422c2c;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2rem;
  border-bottom: 1px solid #e88815;
  padding-bottom: 2%;
  margin-bottom: 2%;
}
.privacy h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  margin-bottom: 12px;
  border-left: 5px solid #a6a6a6;
  padding-left: 2%;
}

.privacy p, .privacy-list {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-list li {
  list-style: disc;
  font-size: 0.9rem;
  margin-left: 2rem;
  line-height: 1.6;
}

.formstyle .submit-btn {
  width: 55%;
  font-size: 1.2rem;
  padding: 2%;
  border-radius: 5px;
  margin: 5% auto 0;
  color: #fff;
  background-color: var(--main_color);
  border-radius: 45px;
}

.privacycheck {
  width: 100%!important;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aicon-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aicon-name ::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../img/common/onepoint-blk.svg) no-repeat center center/contain;
}

.submit-btn {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.submit-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .formstyle {
    width: 100%;
  }
  .contctform {
    width: 100%;
    margin: 0 auto;
  }
  .contctform p.txt {
    text-align: left;
  }
  .formstyle {
    width: 100%;
    margin: 20px auto;
  }
  .privacy {
    padding: 2%;
    width: 100%;
    height: 200px;
  }
  .privacycheck {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .formstyle textarea {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .ttl-contact {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .ttl-contact::before, .ttl-contact::after{
    top: -20%;
    width: 40%;
  }
  .ttl-contact::before{
    left: -10%;
    transform: rotate(-30deg);
  }
  .ttl-contact::after{
    right: -9%;
    transform: rotate(30deg);
  }
  .ttl-contact {
    font-size: 1.8rem;
  }
  .formstyle label, .formstyle select, .formstyle input, .formstyle textarea {
    width: 100%;
  }
  .formstyle{
    border-radius: 10px;
  }
  .privacy {
    padding: 4%;
  }
  .radiobox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2%;
  }
}
/*フォーム確認画面*/
#cheked .ttl{
  margin-bottom: 2%;
}
.confirmation{
  padding: 100px 0;
}
.confirmation .ttl:after {
    bottom: -75%;
}

.cheked-ttl {
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: #231815;
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .formstyle .radio-label {
    display: block;
    margin-left: 0;
  }
  .confirmation{
    padding: 15% 0;
  }
}
/*サンクスページ*/
.thanks-parts{
  padding: 0.8rem 0;
}
.thanks {
  padding: 10% 0;
  position: relative;
    z-index: 99;
}
.thanks .ttl {
  margin: 0 auto 50px auto;
}
.thanks .ttl::after {
  bottom: -42%;
}
.thanks a{
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  display: block;
  width: 20%;
  background: var(--main_color);
  border-radius: 50px;
  margin: 1rem auto 0;
}
@media screen and (max-width: 640px) {
  .thanks a{
    width: 60%;
  }
}

/*.top-column .logo-ttl.-center {
  width: 220px;
  display: block;
  text-align: center;
  margin: auto;
}

.thanks-wrap {
  padding: 80px 0;
}
.thanks-wrap .thanks-ttl {
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
  color: #231815;
  font-size: 2rem;
  margin-bottom: 40px;
}
.thanks-wrap .txt {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .thanks-wrap {
    padding: 15% 0;
  }
  .thanks-wrap .thanks-ttl {
    font-size: 1.2rem;
  }
  .thanks-wrap .txt {
    text-align: left;
    font-size: 0.9rem;
  }
}*/
@media screen and (max-width: 425px) {
  .formstyle .submit-btn{
    width: 85%;
  }
}


/*概要リスト*/
.data-list{
  flex-wrap: wrap;
}
.data-list dt, .data-list dd{
  padding: 2%;
}
.data-list dt{
  border-bottom: 2px solid var(--main_color);
}
.data-list dd{
  border-bottom: 2px solid #c9caca;
}

.data-list dt{
  width: 195px;
  text-align: center;
  font-weight: bold;
}
.data-list dd{
  width: calc(100% - 195px);
}
.data-list li{
  list-style: disc;
  margin-left: 1rem;
}
.data-list address{
  font-style: normal;
  line-height: 1.6;
}
.btn-copy {
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.btn-copy:before {
  margin-right: 1rem;
  content: '＼';
}

.btn-copy:after {
  margin-left: 1rem;
  content: '／';
}
@media screen and (max-width: 1000px){
  .data-list dt {
    width: 40%;
  }
  .data-list dd {
    width: 60%;
  }
}
@media screen and (max-width: 640px){
  .data-list dt, .data-list dd{
    width: 100%;
  }
  .data-list dt{
    text-align: left;
  }
  .data-list dd{
    border: none;
  }
  .btn-copy{
    font-size: 1rem;
  }
  .btn-copy:before{
    margin-right: 0.2rem;
  }
  .btn-copy:after{
    margin-left: 0.2rem;
  }
}


/*TOPへ戻るボタン*/
 .re-btn {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 100px;
  opacity: .7
}
.re-btn img {
  width: 100%
}
.re-btn:hover {
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)"
}

@media screen and (max-width: 640px) {
  .re-btn {
    position:fixed;
    bottom: 2%;
    right: 2%;
    z-index: 50;
    -webkit-transition: .4s;
    transition: .4s;
    width: 30%;
    z-index: 200;
    max-width: 80px;
    opacity: .7
  }
  .re-btn img {
    width: 100%
  }
  .re-btn:hover {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
  }
}

/*footer*/
footer{
  background: var(--ttl_color);
  padding: 100px 0 50px;
  position: relative;
  z-index: 20;
}
footer::before{
  content: "";
  position: absolute;
  background: url(../../assets/img/img_footer_deco.svg) no-repeat center center / cover;
  width: 100%;
  height: 27vh;
  top: -21vh;
}
footer .column{
  justify-content: space-between;
}
footer .footer-logo{
  width: 60%;
  max-width: 200px;
  display: block;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-insta{
  transition: .4s;
}
.footer-insta:hover{
  transform: translateY(5px);
}
.footer-insta img {
    width: 2rem;
    height: 2rem;
}
footer .copy{
  color: #fff;
  font-size: .9rem;
  text-align: center;
  display: block;
  padding-top: 5%;
}
@media screen and (max-width: 1000px){
  footer::before{
    height: 12vh;
    top: -10vh;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 639px){
  footer{
    padding: 15% 0;
  }
  footer::before{
    height: 8vh;
    top: -5vh;
  }
  footer .column {
    align-items: center;
  }
  footer .footer-logo{
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 425px){
  footer::before{
    height: 8vh;
    top: -5vh;
  }
}

/*thanksページ*/
/*.thanks {
  background: #f4f4f4;
}*/
.thanks p{
  text-align: center;
}

@media screen and (max-width: 639px){
  .thanks p{
    text-align: left;
  }
}

/*送信内容確認画面*/
/* 自由に編集下さい */
#formWrap {
  width:90%;
  max-width:750px;
  margin:0 auto 30px auto;
  line-height:120%;
  /*cursor:pointer*/
  margin-bottom:30px;
}

table.formTable{
  width:100%;
  margin:5% auto;
  border-collapse:collapse;
}
table.formTable td{
  border-bottom:1px solid var(--txt_color);
  padding:15px;
  background-color: #fff;
}

table.formTable td{
  border:1px solid #DDDDDD;
  padding:15px;
  background-color: #fff;
}

table.formTable th{
  width:30%;
  font-weight:normal;
  background: #3d3d3d;
  color:#fff;
  text-align:left;
  border: 1px solid #ddd;
    border-bottom: 1px solid #fff;
    padding: 15px;
  padding:15px;
}

p.error_messe{
  margin:5px 0;
  color:red;
}

.send{
  display: -webkit-box;
    display: flex;
    justify-content: space-around;
    width: 400px;
    margin: 0 auto;
  font-size: .87rem;
}
.submitbtn{
  background-color: var(--main_color);
  padding: 12px 50px;
  font-size: 1rem;
  height: fit-content;
  text-align: center;
  margin:20px auto;
  color: #fff;
}
.submitbtn,.backpage {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;}
.submitbtn:hover,.backpage:hover{
  opacity: .7; 
}

.backpage{
  background-color:#b7b7b7;
  color: #231815;
  padding: 16px 50px;
  font-size: 1rem;
  height: fit-content;
  margin:20px auto;
  text-align: center;
}



/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:639px) {
#formWrap {
  width:90%;
  margin:0 auto 50px auto;
}
#formWrap h4{
  font-size:1.5rem;
  margin:10% auto;
}
table.formTable td{
  border-bottom:none;

}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable td,table.formTable th{
  padding:10px;
  border: none;
}
table.formTable th {
  margin-top:5px;
  border-bottom:0;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display: block;
    width: 100%;
    height: auto;
    padding: 5%;
    font-size: 1rem;
}
.backpage{
  font-weight: normal;
  cursor:pointer;
  margin: 20px auto 0px;
  width: 100%;
}
.send{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
}
.send>.nav-entry{
  padding: 2rem 2rem;
}
}