@charset "utf-8";
/*
  CSS Variables
*/
:root {
  /* ------ ------ ------ *
   * 書体
   * ------ ------ ------ */
  --gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;  /* ゴシック */
  --mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho",serif;/* 明朝体 */
}


html, body, a, p, h1, h2, h3, ol, ul, li, dl, dt, dd, div, img, span, strong, em, small, b, i, ruby, rt, rp, sub, sup, address, abbr, pre, blockquote, q, code, iframe, table, tbody, thead, tfoot, tr, td, th, form, label, input, button, select, option, textarea, article, aside, footer, header, main, mark, nav, section, time {
  background-color: transparent;
  border: 0;
  font-size: 100%;
  font-style: normal;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
a, a img, [class*="a-btn"]::before, [class*="a-btn"]::after, button, input, select, textarea, #pnav, a.marker::after, a .marker::after, span.more::after, dl.box>dt::after, dl.box>dd, #global>ul>li ul, #side, .a-card .photo+p::before, .a-card .photo+div::before, #point dl, #fixed {
  -webkit-transition: .2s;
  transition: .2s;
}

body {
    font-weight:normal;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    margin: 0 auto;
    scroll-behavior: smooth;
    color:#000;
    font-family: var(--mincho);
}
.wrap {
  overflow: hidden;
  position: relative;
}


p,dt,dd,small{
  font-family: var(--gothic);
}

p, article, section, table, dl, ul, ol {
  margin-bottom: 0;
}
main {
  line-height: 1;  
}
a,a:hover {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: .8;
}
img {
  margin:0;
  width: 100%;
}
button,
button:hover {
background: none;
border: none;
}
ol, ul {
list-style: none;
}

.pc {
    display: block;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 767px) {
    
    body {
    width: 100%;
    position: relative;
    }
    
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    } 
}

/* HEADER */
#top {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #3B4043;
  opacity: 0.87;
}
.header {
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#top.change-color{
  background-color: inherit;
  transition: 0.3s;
  background-image: none;
}

@media screen and (max-width: 767px) {
  #top{
    background-image: url(./images/logo.svg);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 8%;
  }

  .header {
      height: 70px;
      width: calc(375/428*100%);
      padding-top: 25px;
      padding-bottom: 25px;
  }
}
.header_menu {
  position: absolute;
    right: 0;
}
.header_logo a {
  cursor: default;
  display: flex;
  align-items: end;
}
.header_logo a:hover {
  opacity: .6;
}
.logo_img {
  max-width: 173px;
  width: calc(173/1200*100vw);
  margin-right: 6px;
  display: inline-block;
}
.logo_store {
  font-family: var(--gothic);
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .logo_img {
    width: calc(225/368*100%);
    margin-right: 0;
  }
  #top .logo_store {
    font-size: 16px !important;
  }
}
.h_menu_list {
    display: flex;
    align-items: center;
}
.h_menu_item {
    line-height: 30px;
    height: 30px;
    text-align: center;
    padding:0 0.8rem;
    font-family: var(--gothic);
}

.h_menu_item a{
  color: #fff;
}

.circle {
    width: 172px;
    position: relative;
}
.circle span {
  background-color: #9F8D67;
  color: #fff;
  width: 148px;
  height: 34px;
  position: absolute;
  right: 0;
  padding: 0.1em 0 0 0;
}

.circle span:hover{
  background-color: #C9B17E;
}
.circle span a {
    color: #fff;
}

.circle span a:hover{
  background-color: #C9B17E;
}

main {
    margin: 0 auto;
    margin-top: 93px;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 70px;
  }
  .circle {
    width: 100%;
  }

  .circle span {
    width: 113px;
    height: 30px;
    right:45px;
    font-size: 14px;
  }
}
/* SP　ハンバーガ−メニュー */
@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    right: calc(-30/428*100vw);
    top: 0;
    width: 250px;
    height: 350px;
    transform: translateX(100%);
    background-color:#fff;
    transition: ease .4s;
    justify-content: end;
    margin-top: 70px;
  }
  .nav__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0 0 30px;
  }
  .nav__items li {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .nav-items__item li a:hover {
    opacity: .8;
  }

  .nav__items li span{
    font-size:12px;
    color:#777777;
    margin-left:0.5em;
  }

  /* ハンバーガーメニューの線 */
  .hamburger {
    padding: 0;
    position: absolute;
    right: 0;
    min-width: auto;
    /* background: #fff;
    padding: 6.5%;
    opacity: 0.5; */
  }

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: #777777;
  position: relative;
  transition: ease .4s;
  display: block;
  color: #707070;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 9px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -14px;
  transform: rotate(-45deg);
}
  
}

  /* *************
    FV
************* */
  #backTop{
    background-image: url(images/img_topFV.jpg);
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: cover;
    height: calc(895 /1200 * 100vh);
    /* max-width: 1920px; */
    margin: 100px auto 0;
    background-position: top;
    position: relative;
  }
  
  p.mv_Access {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: #fff;
    text-align: center;
    top: calc(440/895*100vh);
    left: 41.8%;
    position: absolute;
  }
  
  @media screen and (max-width: 767px) {
    #backTop{
      margin: 0;
      width: 100%;
      height: 528px;
      background-image: url(images/img_topFV_sp.jpg);
      background-repeat: no-repeat;
    }
  }

/* *************
    CONTENTS
************* */

section{
  max-width: 1200px;
  margin:0 auto ;
}

/* 背景　灰色の箇所 */
.back_gray{
  background-color:#F8F8F8;
}

h1 {
  font-weight: 500;
}

h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1em;
  color: #000;
  text-align: center;
  position: relative;
  height: 2.8em;
}

h2 span.line::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%; /* 位置調整 */
	transform: translate(-50%); /* 位置調整 */
	bottom: 35px; /* 下線の上下位置調整 */
	width: 56px; /* 下線の幅 */
	height: 1px; /* 下線の太さ */
	background-color: #3B4043; /* 下線の色 */
}

h2 span.kana{
  padding-top: 2em;
  font-size: 1.25rem;
  box-sizing: border-box;
  display: inline-block;
}
h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 2em;
}

h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }

  h1{
    font-size: 1.2rem;
    text-align: left;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  h2 {
    font-size: 2rem;
    padding: 0 calc(30/428*100%);
  }
  h2 span.kana{
    letter-spacing: 0.07em;
  }
  h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    padding: 0 5%;
    text-align: left;
  }

  .h3_mini{
    font-size:1.15rem;
  }

  h3 span {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* *************
    CONCEPT
************* */
.area_concept {
  padding: 140px 0;
}

.concept_box{
  display: flex;
  justify-content: space-between;
  margin-top:70px;
}

.concept_box img.main{
  max-width: 580px;
}

.concept_boxr{
  margin-left:50px;
  display: flex;
  flex-wrap: wrap;
}

.concept_box p{
line-height: 2;
letter-spacing: .05em;
font-size: 1.12rem;
margin-top:-0.4rem;
}

.concept_access{
  width: 100%;
  height: 114px;
  background-color: #fff;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  margin-top:7.1rem;
}

.concept_access p{
  line-height: 1.6;
}

.concept_kuguri{
  border-left:2px solid #b8b8b8 ;
  padding-left: 1rem;
  margin-left: 1rem;

}
@media screen and (max-width: 767px) {
  .area_concept {
    padding:45px 0;
  }

  .concept_box {
    display: inherit;
    margin-top: 30px;
  }

  .concept_boxr{
    margin-left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .sp_coboxr_img{
    margin-top: 20px;
    order:1;
  }

  .concept_box p{
    order: 0;
    padding: 0 5%;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0;
  }

  .concept_access{
    order: 2;
    padding: 16px 0;
    width: 90%;
    margin: 30px auto 0;
    height: 100px;
  }

  .concept_kuguri{
    border-left:2px solid #b8b8b8 ;
    padding-left: 1rem;
    margin-left: 0;
  }

}

/* *************
    DATA
************* */
.area_data {
  padding: 136px 0 50px;
}

.data_box{
  display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
}

.data_box img{
  margin-bottom: 80px;
}

.data_thmb{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.data_thmb img{
  width: 49%;
}

.data_section{
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}

.data_section ul li{
  margin-bottom: 1em;
  font-size: 1.12rem;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 767px) {
  .area_data {
    padding: 60px 0 0;
  }

  .data_box img{
    margin-bottom: 60px;
  }

  .data_box {
    margin:30px 0;
  }

  .data_thmb{
    display: block;
  }

  .data_thmb img{
    width: 100%;
  }

  .data_section ul li{
    font-size: 1rem;
  }
  
  .data_section {
    width: 90%;
    flex-wrap: wrap;
  }
}

/* *************
    QUALITY
************* */
.area_quality {
  padding: 140px 0;
}

.area_quality p{
  font-size:1.5rem;
  margin-top:1.5em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .area_quality {
    padding: 0 0;
  }

  .quality_box{
    width: 90%;
    margin:0 auto;
  }

  .area_quality p{
    font-size: 1rem;
    line-height: 1.4;
  }
}




/* *************
    ACCESS
************* */
.area_access {
  padding: 140px 0;
}

.access_box{
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  flex-wrap: wrap;
}

.access_cloumn{
  width: 48%;
}

.access_cloumn li{
  font-family: var(--gothic);
  font-size: 1.7rem;
  line-height: 100%;
  padding-left: 2.5em;
  margin-bottom: 1em;
}

.access_cloumn li span{
  font-size: 1.15rem;
}

.access_cloumn li.access_ico_train{
  background-image: url(./images/ico_train.svg);
}

/* 電車アイコン　文章2行の場合 */
.access_cloumn li.access_ico_train2{
  background-image: url(./images/ico_train.svg);
}

.access_cloumn li.access_ico_car{
  background-image: url(./images/ico_car.svg);
  padding-top:1rem;
}

/* 車アイコン　文章2行の場合 */
.access_cloumn li.access_ico_car2{
  background-image: url(./images/ico_car.svg);
}

.access_cloumn li.access_ico_bus{
  background-image: url(./images/ico_bus.svg);
}

.access_cloumn li.access_ico_train,.access_cloumn li.access_ico_train2,.access_cloumn li.access_ico_car,.access_cloumn li.access_ico_car2,.access_cloumn li.access_ico_bus{
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left 50%;
  position: relative;
  padding-bottom: 1rem;
}

.access_cloumn li.access_ico_train p span,.access_cloumn li.access_ico_car p span,.access_cloumn li.access_ico_bus p span{
  line-height: 180%;
}

/* 電車アイコン　文章2行の場合 */
.access_cloumn li.access_ico_train2 p{
  position: absolute;
  top:-8px;
}

/* 車アイコン　文章2行の場合 */
.access_cloumn li.access_ico_car2 p{
  position: absolute;
  top:-8px;
}

@media screen and (max-width: 767px) {
  .area_access {
    margin-top:60px;
    padding:60px 0 20px;
  }

  .access_cloumn{
    width: 100%;
    margin:0 5%;
  }

  .access_cloumn:nth-of-type(2){
    margin:0;
  }

  .access_cloumn li {
    font-size:1.25rem;
    line-height: 150%;
    padding-left:4.5em;
  }

  .access_cloumn li span {
    font-size:1rem;
  }

  .access_cloumn li.access_ico_train,.access_cloumn li.access_ico_train2,.access_cloumn li.access_ico_car,.access_cloumn li.access_ico_car2,.access_cloumn li.access_ico_bus{
    height: 55px;
  }

  .access_cloumn li.access_ico_train,.access_cloumn li.access_ico_train2{
    background-image: url(./images/ico_train_sp.svg);
    background-size: contain;
    padding-left: 4em;
  }

  .access_cloumn li.access_ico_car,.access_cloumn li.access_ico_car2{
    background-image: url(./images/ico_car_sp.svg);
    background-size: contain;
    padding-left: 4em;
  }

  .access_cloumn li.access_ico_bus{
    background-size: contain;
    padding-left: 4em;
  }

  /* 車アイコン　文章2行の場合 */
  .access_cloumn li.access_ico_train2 p{
    position: relative;
    top:inherit;
    line-height: 180%;
  }

  /* 車アイコン　文章1行の場合 */
  .access_cloumn li.access_ico_car p{
    padding-top:0;
  }

  /* 車アイコン　文章2行の場合 */
  .access_cloumn li.access_ico_car2 p{
    position: relative;
    top:inherit;
    line-height: 180%;
  }
  
}

/* *************
    OUTLINE
************* */
.area_outline{
  margin-top:140px ;
}
.outline_container {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.area_outline h3{
  margin-top: 60px;
  font-size: 1.25rem;
}
.outline_detail {
  width: calc(450/1000*100%);
}

.outline_fulldetail {
  width: 100%;
}

.outline_detail li p,.outline_fulldetail li p{
  font-family: var(--mincho);
}

.outline_detail li,.outline_fulldetail li {
  display: flex;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: solid 1px #808080;
  text-align: left;
}

.outline_fulldetail li {
  flex-wrap: wrap;
}

.outline_detail li p:first-child{
  width: calc(157/450*100%);
}

.outline_fulldetail li p:first-child {
  width: calc(185/1200*100%);
}

.outline_detail li p:first-child,.outline_fulldetail li p:first-child {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.75;
}

.outline_detail li p:last-child{
  width: calc(292/450*100%);
}

.outline_fulldetail li p:last-child{
  width: calc(400/1200*100%);
}

.outline_detail li p:last-child,.outline_fulldetail li p:last-child {
  line-height: 1.75;
  letter-spacing: .02em;
  font-feature-settings: 'palt';
}

.outline_section_container{
  display: flex;
  justify-content: space-between;
  width: 63.5%;
}

.outline_section li {
  display: flex;
  align-items: center;
  padding: 11px 0;
  text-align: left;
  border-bottom: none;
}

.outline_pic{
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.outline_pic img{
  margin-top:20px;
  width: 48%;
  height: fit-content;
}





@media screen and (max-width: 767px) {
  .area_outline{
    margin-top: 70px;
    width: 90%;
  }

  .outline_container {
    flex-direction: column;
    margin-top: 38px;
    padding-bottom: 19px;
  }
  
  .area_outline h3{
  padding:0;
  }

  .outline_section_container {
    display: initial;
    width: 100%;
  }

  .outline_section li {
    padding:0 0 7px;
  }
  
  .outline_detail,.outline_fulldetail {
      width: 100%;
      margin:0 auto;
  }

  .outline_detail li p:first-child,.outline_fulldetail {
      font-size: 15px;
      line-height: 24px;
      letter-spacing: 0;
  }

  .outline_detail li p:last-child,.outline_fulldetail li p:last-child {
      font-size: 15px;
      line-height: 1.3;
      margin-top: 7.5px;
  }

  .outline_fulldetail li p:first-child {
    font-size: 15px;
    width: 40%;
    letter-spacing: 0;
  }

  .outline_fulldetail li p:last-child{
    width: 60%;
  }

  p.w100{
    width: 100% !important;
    margin-bottom: 11px;
  }
}

/* *************
    IDEA
************* */
.area_idea {
  margin-top: 100px;
  margin-bottom: 140px;
  }
  
.idea_box{
  display: flex;
  justify-content: space-between;
  margin-top:83px;
}

.idea_box:first-child{
  margin-top:70px;
}

.idea_cloumn{
  width: 49%;
  display: inline-grid;
  justify-content: end;
}

.idea_txt{
  margin:143px 0 0 40px;
}

.idea_txt:nth-child(odd){
  margin: 30px 0 80px;
}
.idea_txt p{
  text-align: left;
  line-height: 200%;
} 

.idea_txt h3{
  font-size:1.8rem;
  text-align: left;
  margin: 0px 0 25px;
}

@media screen and (max-width: 767px) {
  .area_idea {
    margin-top: 60px;
    margin-bottom:60px;
  }

  .idea_box{
    display: inherit;
    margin-top: 50px;
  }

  .idea_cloumn{
    width: 100%;
    display: inherit;
  }

  .idea_txt:nth-child(odd){
    margin: 30px 5%;
  }

  .idea_txt{
    margin:60px 5% 30px;
  }

  .idea_txt h3{
    letter-spacing: 0.01em;
    font-size: 1.5rem;
    padding: 0;
  }

  .idea_txt h3 span{
    font-size: 1.5rem;
    margin-left: 1.4em;
    letter-spacing: 0.01em;
  }
  

}


/* *************
    ENVIRONMENT
************* */

.back_env{
  background-image: url(./images/img_env_bg.jpg);
  background-size: cover;
}

.area_env {
  margin-top: 136px;
  padding: 140px 0 120px;
}

.env_box{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}

.env_cloumn{
  width: 23%;
  margin-bottom: 2.5em;
}

.env_caption{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.env_cloumn p{
  margin-top:0.5em;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .env_box {
    width: 90%;
    margin:50px 5% 0 5%;
  }

  .area_env {
    margin-top:60px;
    padding:60px 0;
  }

  .env_cloumn {
    width: 48%;
  }

  .env_caption {
    display: inline-block;
  }

  .env_cloumn p{
    font-size: 0.87rem;
  }

}



/* *************
    ABOUT US
************* */

.area_about{
  margin-top: 136px;
}

.about_box{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}

.about_cloumn{
  width: 47.5%;
  position: relative;
}

.about_cloumn p{
  line-height: 200%;
}

img.about_motif{
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .area_about {
    margin:60px 0;
  }

  .about_box {
    flex-direction: column-reverse;
  }

  .about_cloumn {
    width: 100%;
  }

  img.about_motif{
    display: none;
  }

  .about_cloumn p{
    width: 90%;
    margin: 0 auto 30px;
  }

}


/* *************
    VOICE
************* */

.back_voice{
  background-image: url(./images/img_voice_bg.jpg);
  background-size: cover;
}

.area_voice{
  margin-top: 136px;
  padding: 136px 0 120px;
}

.area_voice h2,.area_voice h3{
  color: #fff;
}

.area_voice h2 span.line::after{
  background-color: #fff;
}

.area_voice h3{
  margin-bottom: 0.5em;

}

.area_voice p.exp{
  margin: 40px 0 70px;
  color: #fff;
  line-height: 200%;
  letter-spacing: 0.1em;
  text-align: center;
}

.voice_box{
  background-color: #fff;
  padding:40px;
  position: relative;
  margin-bottom: 30px;
}

.voice_box h3{
  color: #000;
  margin-top: 0;
  text-align: left;
  letter-spacing: 0.05em;
}

.voice_box p{
  line-height: 200%;
  margin-top: 1.5em;
  font-size: 1.15rem;
  width: 85%;
}

.voice_box img.voice01{
  position: absolute;
  width: 13%;
  top: 10%;
  right: 3%;
}

.voice_box img.voice02{
  position: absolute;
  width: 13%;
  top: 13%;
  right: 3%;
}

.area_voice p.catch{
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .back_voice {
    background-image: url(./images/img_voice_bg_sp.jpg);
    background-size: cover;
  }

  .area_voice {
    margin-top: 60px;
    padding: 60px 5%;
  }

  .area_voice p.exp {
    letter-spacing: 0.01em;
    margin: 40px 0;
    text-align: left;
  }

  .voice_box {
    padding:30px 20px 200px;
  }

  .voice_box p {
    width: 100%;
    font-size: 1rem;
  }

  .voice_box img.voice01 {
    width: 40%;
    top: 60%;
    right: 30%;
  }

  .voice_box img.voice02 {
    width: 40%;
    top: 70%;
    right: 30%;
  }

  .area_voice h3 {
    text-align: left;
    font-family: var(--gothic);
  }

  .area_voice p.catch {
    text-align: left;
    line-height: 200%;
  }
}

/* *************
    会社概要
************* */
#company{
  margin:70px auto 100px;
}

#company h2{
  height: inherit;
}

.company_container {
  display: flex;
  justify-content: space-between;
  margin: 70px 0;
}

.company_detail {
  width: calc(450/1000*100%);
}

.company_detail li {
  display: flex;
  align-items: center;
  padding: 11px 0;
  border-bottom: solid 1px #808080;
  text-align: left;
  line-height: 1.4;
}

.company_detail li p:first-child {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1em;
  width: calc(157/450*100%);
}

.company_detail li p:last-child {
  line-height: 1.75;
  letter-spacing: .02em;
  font-feature-settings: 'palt';
  width: calc(292/450*100%);
}

@media screen and (max-width: 767px){
  .company_container {
    flex-direction: column;
    margin-top: 38px;
    padding-bottom: 19px;
  }

  .company_detail {
    width: 90%;
    margin:0 auto;
  }

  .company_detail li {
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 13.5px;
    padding: 0;
  }

  .company_detail li p:first-child {
    font-size: 15px;
    line-height: 24px;
    background-color: #E4E6EC;
    width: 100%;
    text-align: center;
  }

  .company_detail li p:last-child {
    font-size: 15px;
    line-height: 1.3;
    margin-top: 7.5px;
    width: 100%;
  }

}


/* *************
      FORM
************* */
.area_form{
  margin:0 auto;
  padding:136px 0;
}

.form_box{
  background-color: #fff;
  margin-top: 60px;
}

.form_contact{
  margin-top:30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.form_contact p.title{
  font-family: var(--mincho);
  font-size: 1.625rem;
  letter-spacing: 0.15em;
}

.form_contact p.tel{
  font-size: 2.75rem;
    background-image: url(./images/ico_phone.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 0.9em;
    letter-spacing: 0.05em;
    background-size: contain;
}

.form_contact p.hours{
  font-size: 1.13rem;
}

@media screen and (max-width: 767px) {
  .area_form {
    padding:60px 0;
  }
  .form_contact {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }

  .form_contact p.title {
    font-family: var(--gothic);
    font-size: 1rem;
    letter-spacing: inherit;
  }
  .form_contact p.tel {
    font-size: 1.37rem;
    background-image: none;
    padding-left: 0;
    line-height: 200%;
  }
  .form_contact p.hours {
    font-size:1rem;
    line-height: 150%;
  }


}


/* *************
      BUTTON
************* */
.area_cv{
  max-width: 850px;
  text-align: center;
  background-color: #3B4043;
  padding: 15px 20px 50px;
  margin: 70px auto 140px;
  color: #fff;
}

.area_cv h3{
  font-size: 3rem;
  line-height: 1.5;
  margin-top:0;
  letter-spacing: 0.05em;
}

.area_cv h3 span{
  font-size: 2.06rem;
  letter-spacing: 0.1em;
}

.area_cv h4{
  font-size: 1.5rem;
  margin-bottom: 0;
}

.button{
  display: inline-block;
  background-image: linear-gradient(180deg,  rgba(165, 154, 129, 1),rgba(105, 93, 68, 1));
  width: 80%;
  padding: 30px;
  color: #FFF;
  margin: 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-size: 1.62rem;
  letter-spacing: 0.15rem;
}

a.button:hover{
  color: #fff;
  opacity: 1;
}

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

  .area_cv{
    width: 90%;
    margin: 100px 5%;
    padding: 40px 0;
    text-align: center;
  }

  .area_cv h3 span{
    font-size: 1rem;
  }


  .area_cv h3 {
    text-align: center;
    font-size:2rem;
  }

  .area_cv h4 {
    font-size:1.12rem;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
  }

  .line1{
    width: 14%;
    height: 1px;
    background: #fff;
    transform: rotate(55deg);
    position: absolute;
    bottom: 25%;
    left: 1%;
    position: absolute;
}

.line2{
  width: 14%;
  height: 1px;
  background: #fff;
  transform: rotate(-55deg);
  position: absolute;
  bottom: 25%;
  right: 1%;
  position: absolute;
}

  .button {
    width: 85%;
    font-size: 1.12rem;
    margin: 5px 0;
    padding:15px 0
  }



}


/* *************
      FOOTER
************* */

footer {
    background: #3B4043;
    height: 200px;
}
.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 85px;
    padding-bottom: 85px;
}

.footer_logo img{
  width: 173px;
}

.footer_logo span{
  font-family: var(--gothic);
  font-size: 1.5rem;
  padding-left:0.5em;
  color: #fff;
}

.footer_logo p{
  font-size: 13px;
  margin-top: 2em;
  line-height: 120%;
  color: #fff;
}

.copyright {
    color: #fff;
    font-size: 14px;
    letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  footer {
    height: 267px;
  }
  .footer_container {
    display: block;
    max-width: 100%;
    padding: 31px 30px 33px;
  }

  .footer_logo img {
    width: 100px;
  }

  .footer_logo span{
    font-size: 1.1rem;
  }

  .footer_logo p {
    font-size: 14px;
    margin:1em 0;
    line-height: 180%;
    letter-spacing: -0.04em;
  }


  .copyright {
    margin-top: 1rem;
  }
}

/*//////////////////////////////////////////////
// FLOATING BTN 
//////////////////////////////////////////////*/

/* PC用（非表示）*/
@media screen and (min-width: 768px) {    
  #page-top .float_bnr {
      display: none;
  }
}

/* SP用（表示）*/
@media screen and (max-width: 767px) { 
  .cv-btn {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: .15em;
    font-family: var(--mincho);
    background-image: linear-gradient(180deg, rgba(165, 154, 129, 1),rgba(105, 93, 68, 1));
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cv-btn:hover {
      color: #fff;
  }
  #page-top {
      width: 100%;
      bottom: 10px;
      right:0;
      padding-top:1em;
  }
  .float_bnr {
      width: 80%;
      margin: 0 auto;
      font-size: 16px;
    }
}

.caution{
  margin-top:1em;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .caution{
    margin-top: 0;
  }
}


/* *************
      Thanksページ
************* */
body#i-lpform{
  font-family: var(--mincho);
  background-image: url(./images/thanks/thanks_back.jpg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 100px left;
}

#i-lpform main {
  max-width: 100%;
  padding: 110px 0;
  margin: 100px auto 0;
}

#lpform{
  max-width:600px;
  height: 314px;
  padding:3em 1.5%;
  margin:20px auto;
  background-color: #fff;
  text-align: center;
}

#lpform h2{
  font-size: 1.87rem;
  color:#9F8D67;
  letter-spacing: 0.01em;
  height: auto;
}

#lpform h3{
  margin-top: 1em;
  margin-bottom: 1.3em;
  font-size: 1.87rem;
}

#i-lpform main p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  #i-lpform main {
    padding:30px 0 200px;
  }
  #lpform{
    max-width: 85%;
    height: 400px;
  }
  #lpform h2{
    font-size: 1.62rem;
  }
  #lpform h3{
    font-size: 1.5rem;
    text-align: center;
  }
}


body#i-lpform div#info {
  display: none;
}
body#i-lpform {
  height: auto;
  font-family: var(--mincho);

}
body#i-lpform.sp {
  display: block;
}
#i-lpform #main {
  height: 100%;
  justify-content: flex-start;
}
#lp_qa2,
#list_w_tit.lwt_bg,
section#application {
  background-color: #fff;
}
#lp_qa2 {
  padding:25px 0;
}
[class*="a-btn"],
[class*="linebox"] {
  margin-bottom: 2px;
}
body#i-lpform .a-btn {
  display: inline-block;
  padding: 0.5em;
  background-color: #3B4043;
  color: #fff;
  cursor: pointer;
  width: 300px;
  font-size: 20px;
  text-align: center;
  height: 40px;
}

body#i-lpform .a-btn:hover{
  opacity: 1;
}

#lpform [class*="list-type"]>li,
#lpform [class*="list-type"]>dt,
#lpform [class*="list-type"]>dd,
#lpform [class*="title-i"] {
  display: block;
  position: relative;
  padding-left: 1.2em;
  text-align: left;
  font-size: 0.87rem;
}

.p-rhalf, .p-trhalf, .p-half, .ts {
  padding-right: 0.1em;
  padding-left: 0.1em;
  color: #de5a5a;
}
ul.list-type-kome {
  margin: 0 auto 1em;
  line-height: 1.5em;
  width: 73%;
}
#i-lpform [class*="list-type"]>li::before,
#i-lpform [class*="list-type"]>dt::before,
#i-lpform [class*="title-i"]::before,
#i-lpform .list-type-number.flow>li::after {
  position: absolute;
  left: 0;
  top: 0;
}
#i-lpform a[href^="tel:"],
#i-lpform .time,
#i-lpform .newlist>li>time {
  cursor: default;
  outline: 0;
  letter-spacing: .04em;
}
.list-type-kome>li::before,
.list-type-kome>dt::before,
.title-i-kome::before {
  content: "\203b";
}

@media screen and (max-width: 767px) {
  ul.list-type-kome {
    width: 80%;
  }

}

#i-lpform header#header {
  position: relative;
}

#i-lpform small, sup, sub {
  font-size: .88em;
}
#i-lpform h1+p,
#i-lpform  [id|="topicpath"] ol,
#i-lpform  .spcut {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: normal;
  word-wrap: normal;
}
#i-lpform h1+p {
  font-size: 10px;
  line-height: 2;
  font-weight: normal;
  width: 0;
}
@media(min-width:48em) {
  #i-lpform h1+p {
    left: auto;
    right: 0;
    width: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  body#i-lpform .a-btn {
      width: 200px;
      font-size: 18px;
      height: 40px;
  }
}
@media screen and (max-width: 670px) {
  #i-lp .logo_store {
    font-size: 15px;
  }
  #i-lpform #header>p>a img {
      height: 14px;
      width: 83px;
  }

  #i-lpform #header p.logo_w span {
    font-size: 1rem;
    margin: 0px 0 0 0.8em;
  }
  #i-lpform #header p.logo_w {
      align-items: flex-start;
  }
  #i-lpform div#top {
      padding: 0 5%;
  }
  #i-lpform #header {
      width: 100%;
      margin: 0 auto 10px;
  }
  #i-lpform #header {
      height: 48px;
  }
}

