@charset 'UTF-8';
/* CSS Document */
/*design*/

/***************************************

COMMON

***************************************/
/* --------------------
LAYOUT
--------------------
html {
  scroll-behavior: smooth;
} */
.wrap {
  width: 960px;
  margin: 0 auto;
}
article {
  width: 100%;
  padding-top: 72px;
}
/* 各セクション */
section {
  margin-bottom: 88px;
}
section + section {
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
.wrap {
  width: 100%;
}
section {
    margin-bottom: 56px;
}
section + section{
  margin-top: 64px;
}
}

/* PC時電話番号リンク削除 */
@media screen and (min-width: 680px){
a[href^="tel:"] {
    pointer-events: none;
}
}

/* SPPC表示切替   */
@media screen and (min-width: 680px){
  .pc { display:inline-block; }
  .sp { display:none; }
}
@media screen and (max-width: 680px){
  .pc { display:none; }
  .sp { display:inline-block; }
}


/***************************************

HEADER

***************************************/
.header {
   padding: 0 2%;
   position: fixed;
   top: 0;
   width: 100%;
   display: flex;
   align-items: center;
   z-index: 100;
   height: 72px;
   background-color: #fff;
}
.header a {
  text-decoration: none;
  color: #2d2e2d;
  display: block;
}
.header__title{
  width: 128px;
}
nav {
   margin: 0 0 0 auto;
}
.header__list {
   list-style: none;
   margin: 0;
   display: flex;
   align-items: center;
}
li {
   margin: 0 0 0 15px;
   font-size: 14px;
}
.main-visual {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   background: url('main_visual.jpg') top center / cover no-repeat;
}
.sp-nav {
   display: none;
}
.header__contact{
}
.header__contact a{
  background-color: #149a6a;
  padding: 10px 40px;
  border-radius: 100px;
  color: #fff;
  transition: all .25s ease;
}
.header__contact a:hover {
  box-shadow: 0 5px 8px #c5ddd5;
  transform: scale(1);
  opacity: 1;
}
.header__list li a:hover{
  color:#149a6a;
  transition: all .25s ease;
}
.header__list .header__contact a{
  background-color: #149a6a;
  padding: 10px 40px;
  border-radius: 100px;
  color: #fff;
  transition: all .25s ease;
}
.header__list .header__contact a:hover {
  box-shadow: 0 5px 8px #c5ddd5;
  transform: scale(1);
  opacity: 1;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .header{
  height: 64px;
  padding: 0 4vw;
  }
  .header__title {
    width: 112px;
}

.header__contact a{
  padding: 16px 0px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
   .pc-nav {
      display: none;
   }
   .sp-nav {
      z-index: 1;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      display: block;
      width: 100%;
      opacity: 0;
      transform: translateY(-100%);
      transition: all .2s ease-in-out;
      background: rgb(255 255 255 / 98%);
   }
   .sp-nav__head{
    display: flex;
    align-items: center;
   }
   .sp-nav__head img{
    width: 181px;
    padding: 18px 0 0 4vw;
   }
   .hamburger {
      position: relative;
      display: block;
      width: 30px;
      height: 20px;
      margin: 0 0 0 auto;
   }
   .hamburger span {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 100%;
      height: 2px;
      background-color: #2d2e2d;
      transform: translateY(-50%);
   }
   .hamburger::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #2d2e2d;
   }
   .hamburger::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 70%;
      height: 2px;
      background-color: #2d2e2d;
   }
   /*スマホメニュー*/
   .sp-nav ul {
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 70%;
      justify-content: center;
   }
   .splink {
      margin: 0;
      padding: 0;
      display: block;
      padding: 20px 0;
   }
   .sp-list li{
     border-bottom: 1px solid #d3d3d3;
     display: block;
     width: 80%;
   }
   .sp-list li:last-child{
     border-bottom: none;
   }
   .close{
    padding: 0;
   }
   .header__contact{
  margin: 20px 0;
}
   /*-閉じるアイコンー*/
   .sp-nav .close {
      position: relative;
      width: 100%;
      height: 60px;
   }
   .sp-nav .close::before {
      content: '';
      position: absolute;
      display: block;
      width: 32px;
      height: 2px;
      background: #2d2e2d;
      transform: rotate( 45deg );
      right: 16px;
      top: 34px;
   }
   .sp-nav .close::after {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: #2d2e2d;
      transform: rotate( -45deg );
      position: absolute;
      right: 16px;
      top: 34px;
   }
   .toggle {
      opacity: 1;
      transform: translateY( 0 );
   }
   .main-visual {
      padding: 0 4%;
   }
}

/***************************************

FV

***************************************/
.fv{
  display: flex;
  position: relative;
  align-items: center;
  height: calc(100vh - 72px);
  max-height: 900px;
}
.fv:before {
    content: '';
    background: url("../img/fv_bg.jpg") center left no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    z-index: -1;
    width: 56%;
    right: 0;
    height: 100%;
}
.fv__ttl img{
  width: 420px;
}
@media screen and (max-width: 768px) {
  .fv{
  position: relative;
  align-items: start;
}
  .fv:before {
    width: 100%;
    bottom: 0;
    height: 74vw;
}
.fv__ttl{
  padding: 1vw 7vw 0 9vw;
}
}


/***************************************

概要

***************************************/
.outline{
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
}
.outline__dtl{
  padding-left: 72px;
}
.outline__txt{
  font-size: 2.5rem;
  line-height: 1.8;
}
.outline__txt span{
background: linear-gradient(transparent 60%, #ffff66 60%);
}
.outline__point{
  padding: 32px 0;
  width: 448px;
}
.outline__chara{
  width: 448px;
}

@media screen and (max-width: 768px) {
.outline{
  display: block;
  padding: 0 5%;
}
.outline__dtl{
  padding-left: 0;
}
.outline__point{
  padding: 16px 0;
  width: 100%;
}
.outline__txt{
  font-size: 18px;
}
.outline__img{
  padding-top: 32px;
  height: 300px;
}
.outline__img img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.outline__chara{
  width: 100%;
}
}
/***************************************

アクセスマップ

***************************************/
.access{
  background-color: #139a6a;
}
.access__cont{
  display: flex;
  color: #fff;
  padding: 72px 0;
  font-size: 16px;
  flex-flow: row-reverse;
}
.access__map iframe{
  border-radius: 16px;
  height: 256px;
  width: 448px;
}
.access__dtl{
  padding-left: 72px;
  position: relative;
  width: 100%;
}
.access__ttl{
  font-size: 24px;
}
.access__txt{
  padding: 30px 0;
}
.access__station{
  padding: 20px 0;
}
.access__station:before{
  content: '';
  display: inline-block;
  width: 29px;
  height: 32px;
  background-image: url(../img/access_ico.png);
  background-size: contain;
  vertical-align: middle;
}
.access__btn{
  width: 120px;
  font-size: 14px;
  position: absolute;
  right: 0;
}
.access__btn a{
  text-decoration: none;
  background-color: #fff;
  padding: 10px;
  color: #139a6a;
  border-radius: 8px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .access__ttl{
    font-size: 7vw;
  }
.access__cont{
  display: block;
  padding: 20px 5% 32px;
}
.access__map{
  padding-top: 36px;
}
.access__map iframe{
  width: 100%;
  box-sizing: border-box;
  height: 240px;
}
.access__dtl{
  padding: 0;
}
.access__btn{
  bottom: -5px;
}
}

/***************************************

リンクボタン

***************************************/
.link_area{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 80px;
}
.link_area__btn a{
  color: #139a6a;
  text-decoration: none;
  font-size: 20px;
  border: 2px solid #139a6a;
  padding: 20px 64px;
  border-radius: 100px;
  display: block;
  text-align: center;
}
.link_area__btn a:hover{
  color: #fff;
  background-color: #139a6a;
  border: 2px solid #139a6a;
  transition: all .5s ease;
}
.link_area__btn a:after{
  content: '';
  display: inline-block;
  width: 10px;
  height: 16px;
  background-image: url(../img/link_area_ico.svg);
  background-size: cover;
  margin-left: 24px;
}
.link_area__btn a:hover:after{
  background-image: url(../img/link_area_ico2.svg);
  transition: all .25s ease;
}

@media screen and (max-width: 768px) {
.link_area{
  display: block;
  padding-bottom: 32px;
  width: 90%;
}
.link_area__btn a{
  padding: 16px;
  font-size: 16px;
}
.link_area__btn a:after{
  margin-left: 4px;
}
.link_area__btn{
  padding-bottom: 20px;
}
}


/***************************************

カレッジタウン詳細

***************************************/
/*　タイトル
—————————————————*/
.col_cont__ttl{
  font-size: 46px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.col_cont__ttl span{
  font-size: 14px;
  color: #6E6E6E;
}
.col_cont__txt{
  padding: 72px 0 0;
  font-size: 18px;
  line-height: 2;
  display: flex;
  justify-content: space-between;
}
.col_cont__price{
  text-align: left;
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.col_cont__span1{
  font-size: 80px;
  color: #149a6a;
}
.col_cont__span2{
  font-size: 40px;
}
.col_cont__sub {
    padding: 16px 0 72px;
    text-align: right;
}
.yellow {
    background: linear-gradient(transparent 60%, #ffff66 60%);
}

/*　写真
—————————————————*/
.col_pic{
  position: relative;
  display: flex;
}
.col_pic__left{
  padding-right: 44px;
}
.col_pic__right2{
  padding-top: 28px;
}
.col_pic__emp{
  position: absolute;
  left: -40px;
  bottom: -32px;
}
/*　6つのポイント
—————————————————*/
.col_point{
  padding: 72px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-around;
  display: flex;
  height: 670px;
}
.col1__txt{
  text-align: right;
  margin: -64px auto 64px;
}
@media screen and (max-width: 768px) {
.col1__txt{
  font-size: 14px;
  margin: -32px auto 40px;
}
}

/***************************************

ポップアップ

***************************************/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 60px 10px;
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  max-width: 600px;
  padding: 4vw 30px;
  border-radius: 16px;
  background: #fff;
  vertical-align: middle;
  width: 70%;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}
.modal-link{
  text-decoration: none;
}
/***************************************

　空いてるお部屋

***************************************/
.col_floor{
  background-color: #139a6a;
  border-radius: 16px;
  padding: 26px 0 36px;
  text-align: center;
}
.col_floor__ttl{
  color: #fff;
  font-size: 36px;
  line-height: 1.4;
}
.col_floor__ttl span{
  font-size: 14px;
}
.col_floor__cont{
  display: flex;
  justify-content: center;
  padding: 10px;
}
.col_floor__dtl{
  background-color: #fff;
  border-radius: 16px;
  width: 210px;
  text-align: center;
  padding: 30px 0;
  margin-right: 16px;
  transition: all .25s ease;
  animation: populate .5s ease-out normal backwards;
  box-shadow: 0 9px 10px #192a0e54;
}
.col_floor__dtl:last-child{
  margin-right: 0px;
}
.col_floor__price{
  color: #139a6a;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}
.col_floor__price span{
  font-size: 1.4em;
}
.col_floor__area{
  color: #2d2e2d;
}
.col_floor__area span{
  background-color: #FFFF81;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 0.8em;
}
.col_floor__img{
}
.col_floor__img img{
  max-height: 136px;
}
.col_floor__dtl--pop{
  margin: 0 auto;
  width: 100%;
  padding: 0;
  box-shadow: none;
}
.col_floor__img--pop{
  width: 20vw;
  margin: 0 auto;
}
.col_floor__img--pop img{
  max-height: 100%;
}
.col_floor__price--pop{
  font-size: 60px;
}
.col_floor__area--pop{
  font-size: 24px;
}
.col_floor__sub{
  color: #149a6a;
  margin: 0 0 12px;
  display: inline-block;
}
.col_floor__subtxt{
  color: #feff65;
  padding: 20px 0 20px;
  font-size: 20px;
}
.col_floor__spe{
  color: #fff;
  width: 262px;
  margin: 0 auto;
  font-size: 14px;
  margin-right: 234px;
  padding: 14px 0;
}
.col_floor__spe span {
  position: relative;
  display: inline-block;
  margin: 8px 0 8px;
  padding: 4px 12px;
  min-width: 120px;
  max-width: 100%;
  color: #1d1d1d;
  background-color: yellow;
  border-radius: 4px;
}
.col_floor__spe span:before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid yellow;
}

@media screen and (max-width: 768px) {
  .col_floor__ttl {
  font-size: 7vw;
  }
  .col_floor__ttl span{
    font-size: 12px;
  }
  .col_floor__dtl,
  .col_floor__dtl:last-child {
    margin: 0 auto;
  }
  .col_floor__dtl {
    padding: 6% 7%;
    width: 84%;
    margin-bottom: 16px;
    align-items: center;
    box-shadow: none;
  }
  .col_floor__img {
    width: 42%;
  }
  .col_floor__img img {
    width: auto;
    max-height: 80px;
  }
  .col_floor__txt {
    margin-top: -10px;
    width: 58%;
  }
  .col_floor__price {
    font-size: 30px;
  }
  .col_floor__sub {
    margin: 2px 0 5px;
    align-items: end;
  }
  .modal-link{
    display: flex;;
    align-items: center;
  }
  .col_floor__txt--pop{
    width: 100%;
    padding-top: 16px;
  }
  .col_floor__txt--pop .col_floor__price{
    font-size: 40px;
  }
  .col_floor__dtl--pop{
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .col_floor__img--pop{
    width: 100%;
  }
  .col_floor__img--pop img{
    max-height: 100%;
  }
  .col_floor__area--pop{
  font-size: 22px;
  }  
  .modal-wrapper .modal-window{
    padding: 13vw;
    width: 84%;
  }
  .col_floor__subtxt{
    font-size: 4.5vw;
    padding: 20px 0 16px;
  }
  .col_floor__spe {
    width: 90%;
    margin: 0 auto;
  }
}
/***************************************

お部屋写真

***************************************/
.col_piclist {
  padding: 72px 0 40px;
}
.col_piclist__title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1;
}
.col_piclist__cont {
  display: flex;
  justify-content: space-between;
}
.col_piclist__thumb {
  overflow: hidden;
  width: 42%;
  margin-right: -40px;
}
.col_piclist__thumb li {
  float: left;
  list-style: none;
  margin: 0 12px 16px 0;
  max-width: 80px;
}
.col_piclist__thumb li:last-child {
  margin-right: 0;
}
.col_piclist__thumb li img {
  opacity: 0.8;
  filter: alpha(opacity=50);
  border: 2px solid #c9c9c9;
  border-radius: 6px;
}
.col_piclist__thumb li.current img {
  filter: alpha(opacity=100);
  opacity: 1;
  border: 2px solid #149a6a;
}
.col_piclist__main {
  position: relative;
  width: 58%;
}
.col_piclist__main img {
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 16px;
}
.col_point__img {
  width: 288px;
}
.col_piclist__scroll {
  padding: 0 8px 6px;
  overflow-x: inherit;
}
.col_piclist__scroll>li {
  min-width: inherit;
}

@media screen and (max-width: 768px) {
  .col_piclist__title{
  font-size: 7vw;
  margin-bottom: 28px;
  }
  .col_piclist__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 12px 8px;
    display: flex;
  }
  .col_piclist__scroll img {
    vertical-align: bottom;
  }
  .col_piclist__scroll>li {
    width: 100%;
    min-width: 24vw;
  }
  .col1,
  .col2 {
    padding: 0 5%;
  }
  .col_cont__txt,
  .col_floor__cont,
  .col_piclist__cont {
    display: block;
  }
  .col_piclist__main,
  .col_piclist__thumb {
    width: 100%;
  }
  .col_piclist__thumb {
    padding: 24px 0 0 0;
  }
  .col_point {
    padding: 40px 0px;
    height: 500px;
  }
  .col_point__img {
    width: 48%;
  }
  .col_cont__ttl {
    font-size: 33px;
  }
  .col_cont__ttl span {
    font-size: 12px;
  }
  .col_cont__txt {
    font-size: 16px;
    padding: 48px 0 0;
  }
  .col_cont__price {
    font-size: 24px;
    padding-top: 32px;
    margin-right: 0;
    text-align: right;
  }
  .col_cont__span1 {
    font-size: 56px;
  }
  .col_cont__span2 {
    font-size: 24px;
  }
  .col_pic__left {
    padding-right: 3%;
  }
  .col_pic__right2 {
    padding-top: 2%;
  }
  .col_pic__emp {
    left: -14px;
    bottom: -24px;
    width: 35%;
  }
  .col_piclist {
    padding-top: 56px;
    padding-bottom: 0;
  }
}

/***************************************

お問い合わせ

***************************************/
.contact{
  background-color: #139a6a;
  text-align: center;
  padding: 56px 0;
}
.contact_ttl{
  color: #fff;
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.contact_ttl:before{
  content: '';
  background-image: url("../img/cta_dec_l.png");
  display: inline-block;
  width: 68px;
  height: 94px;
  background-size: cover;
  position: absolute;
  left: 0;
}
.contact_ttl:after{
  content: '';
  background-image: url("../img/cta_dec_r.png");
  display: inline-block;
  width: 68px;
  height: 94px;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}
.contact_ttl__txt{
  font-size: 28px;
}
.contact_ttl__img{
  position: absolute;
  top: 0;
  right: 64px;
}

.contact_area{
  padding: 40px 0;
  width: 96%;
  margin: 0 auto;
}
.contact_area__btn{
  background-color: #fff84d;
  border-radius: 100px;
  margin-bottom: 28px;
  transition: all .25s ease;
  animation: populate .5s ease-out normal backwards;
  box-shadow: 0 9px 10px #192a0e8f;
  text-align: center;
}
.contact_area__btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #2d2e2d;
  padding: 20px 0;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.contact_area__img{
  width: 68px;
  padding-right: 12px;
}
.contact_area__img2{
  width: 44px;
  padding-right: 16px;
}
.contact_area__btn span{
  font-size: 14px;
  background-color: #FC7128;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.contact_area__tel{
  letter-spacing: 0.05em;
}
.contact_area__btn:hover {
  z-index: 1;
  box-shadow: 0 9px 16px #192a0e80;
  transform: scale(1.05);
  opacity: 1;
}
.contact_area__btn--tel{
  background-color: #fff;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 16px;
  letter-spacing: 0.15em;
}
.contact_area__btn--tel:hover {
  transform: scale(1);
  box-shadow: none;
}
.contact__txt{
  color: #fff;
}
.contact--2{
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact{
    padding:40px 4% 32px;
  }
.contact_ttl{
  width: 100%;
}
.contact_ttl__txt{
  font-size: 6vw;
  line-height: 1.4;
}
.contact_ttl:before,
.contact_ttl:after {
    width: 54px;
    height: 75px;
    top: 26px;
}
.contact_ttl__img{
  width: 12%;
  top: -20px;
  right: 2px;
}
.contact_area{
  width: 100%;
  padding: 24px 0 16px;
}
.contact_area__btn {
    margin-bottom: 20px;
}
.contact_area__btn a {
    font-size: 6vw;
    line-height: 1.5;
    height: 100px;
    padding: 0;
}
.contact_area__btn--tel{
  transition: all .25s ease;
  animation: populate .5s ease-out normal backwards;
  box-shadow: 0 9px 10px #192a0e8f;
  border-radius: 100px;
}
.contact_area__btn--tel:hover {
  z-index: 1;
  box-shadow: 0 9px 16px #192a0e80;
  transform: scale(1.05);
  opacity: 1;
}
.contact_area__img{
  width: 15vw;
  padding-right: 2vw;
}
.contact_area__btn span{
  letter-spacing: 0.01em;
  font-size: 3.6vw;
}
.contact_area__tel{
  font-size: 6.5vw;
  letter-spacing: 0.1em;
}
.contact_area__img2 {
    width: 11vw;
    padding-right: 4vw;
}
.contact__txt{
  font-size: 14px;
}
}


/***************************************

物件情報詳細

***************************************/
.details{
  background-color: #F4F4F4;
  padding: 72px 0;
  margin-bottom: 0;
}
.details__ttl{
  text-align: center;
  padding-bottom: 32px;
  color: #6E6E6E;
  line-height: 2;
  font-size: 14px;
}
.details__ttl span{
  color: #139a6a;
  font-size: 32px;
}
.details__ttl span:before{
  content: '';
  background-image: url("../img/dtl_ico.png");
  display: inline-block;
  width: 24px;
  height: 39px;
  background-size: cover;
  margin-right: 16px;
  vertical-align: sub;
}
.details__dtl{
  background-color: #fff;
  border-radius: 16px;
  padding: 72px 103px;
  display: flex;
}
.details__list {
  width: 50%;
}
.details__list:first-child{
  width: 70%;
  padding-right: 30px;
}
.details__list dt,
.details__list dd{
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #B9B9B9;
}
.details__list dt{
  color: #139a6a;
  float: left;
}
.details__list dd{
  padding-left: 140px;
}
.details .details__none{
  border-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .details__ttl{
    font-size: 12px;
  }
  .details__ttl span{
    font-size: 7vw;
  }
  .details__ttl span:before{
    width: 20px;
    height: 30px;
    margin-right: 6px;
  }
  .details{
    padding:56px 5%;
  }
.details__dtl{
  display: block;
  padding: 32px;
}
.details__list,
.details__list:first-child {
  width: 100%;
  padding-right: 0px;
  font-size: 14px;
  line-height: 1.3;
}
.details__list dt{
  clear: both;
  border-bottom: 0px;
  margin-bottom: 0;
  padding-bottom: 2px;
}
.details__list dd{
  clear: both;
  padding-left: 0;
  margin-bottom: 16px;
}
}

/***************************************

フッター

***************************************/
.footer{
  background-color: #F4F4F4;
  text-align: center;
  padding: 48px 0 0;
  font-size: 12px;
}
.footer__link{
  color: #6E6E6E;
  text-decoration: none;
  padding: 16px 0 32px;
  display: inline-block;
}
.footer__cr{
  background-color: #fff;
  padding: 16px 0;
}
.footer__bnr{
  max-width: 448px;
  width: 90%;
  margin: 0 auto;
}

.page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: all .25s ease;
  animation: populate .5s ease-out normal backwards;
  box-shadow: 0 4px 12px #192a0e2e;
}
.page_top a{
  position: relative;
  display: block;
  text-decoration: none;
  height: 43px;
  width: 50px;
}
.page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #149a6a;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.page_top:hover {
  z-index: 1;
  box-shadow: 0 9px 16px #192a0e4d;
  transform: scale(1.05);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page_top{
    display: none;
  }
}

/***************************************

プライバシーポリシー

***************************************/
.privacy{
  padding: 80px;
}
.privacy__title{
  color: #149a6a;
  font-size: 24px;
}
.privacy__dtl{
  margin-top: 60px;
}
.privacy__sec{
  margin-top: 40px;
}
.privacy__subtitle{
  font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 1.4;
}
.privacy__subtitle:before{
      content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0px 0.5em 3px 0px;
    background-color: #545454;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .privacy{
    padding: 20px 5%;
  }
}
