@charset "UTF-8";
/* CSS Document */

/*
GENERAL STYLING
================================================ */
*{
    margin: 0;
    padding: 0;
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}

html {
  font-size: 100%;
  color: #2c2c2c;
　scroll-behavior: smooth; /* ←ページ内スクロールを滑らかに */
}


body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #EBECEB;/*背景カラー*/
}


/*
COMMON
================================================ */
p,
td {
    line-height: 1.7;
}


/* Layout */
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}



main {
    max-width: 900px;
    width: 94%;
    margin: 6.25rem auto;
    padding: 3rem 2rem;
    background: #EBECEB;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
}

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


/*fadeUpTrigger-----*/
.fadeUpTrigger{
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/*fadeUpTrigger-----*/


.highlight {
    background: linear-gradient(transparent 60%, #bcddeb 60%);
    padding: 0 5px;
}


/*-----------FVのCTAボタン----------*/

 .btn-primary  {
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display: inline-block;
   /* width: 100%; 
    max-width: 350px; */
    margin: 40px auto; /* 上下余白＋中央寄せ */
    padding: 1.3rem 3.3rem;
    background: #C98F2B;
    font-weight: 500;
    color: #EBECEB;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    justify-content: center;
    outline: none;
    overflow: hidden;
  }


/*キラッと光る*/
.btn-primary::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

.btn-primary::after {
          content: '▶';
          margin-left: 1em;
      }


/*hoverした際の移動のアニメーション*/
.btn-primary:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}




/*-----------CTAボタン----------*/
 .cta  {
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:flex;
    width: 100%; /* スマホでは幅いっぱい */
    max-width: 300px; /* PCでは文字量に合わせた最大幅 */
    margin: 40px auto; /* 上下余白＋中央寄せ */
    padding: 1rem 1.5rem;
    border: 1px solid transparent;
    background: #C98F2B;
    font-weight: 500;
    color: #EBECEB;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1rem;
    transition: 0.3s;
    justify-content: center;
    outline: none;
    overflow: hidden;
  }


/*キラッと光る*/
.cta::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

.cta::after {
          content: '▶';
          margin-left: 1em;
      }


/*hoverした際の移動のアニメーション*/
.cta:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}




/* Heading */
.title {
    font-size: 1.5rem;
    line-height: 1.5;
}

.title::after {
    content: '';
    display: block;
    height: 5px;
    width: 10rem;
    background: #d0bea2;
    margin: 2rem 0 2.5rem;
}

.title-center {
    text-align: center;
}

.title-center::after {
    margin: 2.5rem auto;
}


   br.br-pc {
    display: none;
  }    
    
   br.br-sp {
    display: inline;
  }



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 9999999;
	background:#2B5388;
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}



/*
HEADER
================================================ */

#header {
	position: fixed;/*header固定*/
	height: 55px;/*Headerの高さ設定*/
	width:100%;
    z-index: 9;
	display: flex;
	justify-content: left;
	align-items: center;
    background: #EBECEB;
    top: 0;
}



h1 {
    color: #112540;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 10px;
}

@media screen and (max-width:900px) {  
    
#pc-nav {
      display: none;
  }
}


#pc-nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
    margin-left: 20px;
}

#pc-nav li a {
    position: relative;
    white-space: nowrap;
	display: block;
	text-decoration: none;
    font-weight: 400;
	padding: 0 10px;
	transition:all 0.3s;
}

#pc-nav li a:hover {
    color: #C98F2B;
}


.logo {
    width: 2rem;
}


    
 #header .wrapper {
        padding: 2rem 1rem;
    }

    .main-nav li {
        margin-left: 2rem;
        font-size: 1.25rem;
    }
    
    .main-nav a {
        width: auto;
    }
    
    .main-nav a:hover,
    .main-nav .current {
        border-bottom: 2px solid #2d3374;
        padding-bottom: .5rem;
        background: none;
    }
    
    .main-nav a::before {
        content: '';
    }    

/*
HOME
================================================ */
.home-hero {
    background: url('../img/office_sp.jpg') no-repeat;
    background-size: 100%;
    margin: 50px 0 0;
    
}

.home-hero-text {
      background: rgba(235,236,235,.8);
      display: inline-block;
      padding-bottom: 10px;
      margin: auto;
      animation-name: fadeInAnime;
      animation-duration: 2s;
      animation-fill-mode: forwards;
      opacity:0;
  } 

.home-hero h2 {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 3vh 0 0;
    padding: 1rem;
}

.home-hero p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0.5rem 1rem 0.5rem;
}


.home-hero-back{
        padding: 80% 20px 0;
    }


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

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/*
HOME PCサイズ向け
================================================ */
@media (min-width: 900px) {

/* Home */
  .home-hero {
    background: url('../img/office.jpg') no-repeat;
    background-size: cover;
    height: 100vh;
    max-width: 100%;
    margin: 50px 0 0;
   }
    
    
    .home-hero-back{
        padding: 100px 50px;
    }
    
    .home-hero-text {
        background: rgba(235,236,235,.8);
        display: inline-block;
        padding-bottom: 2rem;
        margin: auto;
        animation-name:fadeInAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
        opacity:0;
    } 
    
    .home-hero h2 {
        display: inline-block;
        font-size: 1.5rem;
        line-height: 2;
        font-weight: 500;
        margin: 3vh 2rem;
     }

    .home-hero p {
        font-size: 1rem;
        font-weight: 500;
        line-height: 2;
        margin: 0.5rem 2rem;
    }


.hero-btn {
    text-align: left;
}

    
}
    


/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-150%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#2B5388;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li {
	list-style: none;
    text-align: center; 
}

#g-nav li a {
    font-weight: 500;
	color: #EBECEB;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}



/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 80px;
    height:50px;
    border-left:2px solid #2c2c2c;
    font-weight: 500;
}
	
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    font-weight: 500;
	background: #2c2c2c;
  	width:30%;
    opacity: 0;
    top:22px;
    left:20px;
 }

.openbtn span:nth-of-type(2) {
	top:18px;
	left:18px;
	text-transform: uppercase;
	color: #2c2c2c;
    font-size: 0.9rem;
}

@media screen and (max-width:768px) {
.openbtn span:nth-of-type(2) {
    font-size: 0.8rem;
    }
    
}

.openbtn span:nth-of-type(3) {
    top: 35px;
}


/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/

.openbtn.active {
    border-left:2px solid #EBECEB;
}

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    opacity:1;
    background: #EBECEB;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity:0;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
}




/*===========================================================*/
/*こんなことに心当たりはありませんか？
/*===========================================================*/

/*三角形つきの背景*/
.speech-bubble {
  color: #EBECEB;
  background-color: #2B5388; /* 背景色 */
  padding: 2em;
  position: relative;
  text-align: center; /* 中央寄せ */
  width: 100vw;
  margin: 0px auto; 
}

/* 下の三角形 */
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px; /* 三角形の下辺がsectionの下に来る */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid #EBECEB;
  border-right: 15px solid #EBECEB;
  border-top: 20px solid #2B5388; /* セクションと同じ色 */
}


.speech-bubble ul {
   list-style: none;
   text-align: left;
   padding-bottom: 20px;
}

.speech-bubble li {
	padding: 20px 0px 0px 40px;
	position: relative;
    line-height: 1.8rem;
}

.speech-bubble li::before {
    content: "";
    display: block;
    height: 0.5rem;
    width: 1rem;
    border-bottom: 3px solid #C98F2B;
    border-left: 3px solid #C98F2B;
    transform: rotate(-45deg);
    position: absolute;
    top: 1.8rem;
    left: 0.8rem;
}



.aori {
    position: relative;
    margin-bottom: 20px;
    padding: 1rem 3rem;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
    
}

.aori::before,
.aori::after {
    position: absolute;
    width: 20px;
    height: 30px;
    content: '';
}

.aori::before {
    border-left: solid 3px;
    border-top: solid 3px;
    top: 0;
    left: 10%;
}

.aori::after {
    border-right: solid 3px;
    border-bottom: solid 3px;
    bottom: 0;
    right: 10%;
}

.aori-img {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 10px;
    
}

.aori-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aori-box {
    display: flex;
    justify-content: center;
}

.aori-p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 3rem 0 0;
    text-align: center;
}

@media (min-width: 800px) {
.aori-p {
    font-size: 1.5rem;
}
}

/*===========================================================*/
/*事業内容
/*===========================================================*/

.service {
    color: #2B5388;
    position: relative;
    margin: 4rem 0 0;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.service::before {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(17,37,64,0.1);
    font-size: 4rem;
    text-transform: uppercase;
    content: 'SERVICE';
    z-index: -1;
}

.service-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

.service-img {
    height: 180px;
    width: auto;
}

.service-box {
    background-color: transparent;
    padding: 20px;
    text-align: center;
}

.service-box p {
    margin-top: 10px;
    font-weight: 500;
}



/*===========================================================*/
/*代表挨拶
/*===========================================================*/



.greeting {
    color: #2B5388;
    position: relative;
    margin: 4rem 0 0;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.greeting::before {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(17,37,64,0.1);
    font-size: 4rem;
    text-transform: uppercase;
    content: 'GREETING';
    z-index: -1;
}

.greeting-img {
    width: 300px;
    height: auto;
    padding: 20px; 
}

.greeting-flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.greeting-box {
    display: flex;
    justify-content: center;
    
}

.greeting-text {
    width: 80%;
    font-size: 0.9rem;
    background-color: rgba(255,255,255,.8);
    box-shadow: 0 0 10px #d9d9d9;
    padding: 20px;
    margin: 0 auto;
}

.greeting-text p {
    padding: 5px 0;
}

.name-title {
    font-size: 1rem;
    padding: 10px 0;
}

.name {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
}


@media screen and (min-width: 900px){

/*代表挨拶*/
  .greeting-flex {
    position:relative;
    height: 430px;
    display: flex;
    flex-direction: row;
    gap: 40px; /* 間隔を指定 */
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
  }

  .greeting-box {
    position:absolute;
    top:5%;
    left:15%;
    margin: 0;
  }

  .greeting-img {
    width: 300px;
    height: auto;
    padding: 0;
  }

  .greeting-text {
    position: absolute;
    top:0;
    left:40%;
    width: 100%;
    max-width: 500px;
    margin: 10px;
  }
}



/*===========================================================*/
/*お客様の声
/*===========================================================*/

.customer {
    color: #2B5388;
    position: relative;
    margin: 4rem 0 2rem;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.customer::before {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(17,37,64,0.1);
    font-size: 4rem;
    text-transform: uppercase;
    content: 'voice';
    z-index: -1;
}

.voice-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 70%;
  margin: auto auto 20px;
  padding: 20px;
  background: #fff;
　box-shadow: 0 0 10px #d9d9d9;
}


.label {
  background-color: #2b5388;
  color: white;
  padding: 6px 14px;
  display: inline-block;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.voice-content {
  display: flex;
  align-items: flex-start;
}


.voice-icon img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #e0f0fb;
  object-fit: cover;
  margin: 0 50px;
}

.voice-text {
  flex: 1;
}

.voice-text h3 {
  margin: 0;
  font-size: 1.1rem;
}

.voice-text hr {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #ccc;
  width: 100%;
}

.voice-text p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}


@media screen and (max-width: 800px){
    
  .label {
    text-align: center;
  }    

  .voice-section {
    max-width: 80%;
  }

   .voice-content {
    display: flex;
    flex-direction: column;
  }

   .voice-text h3 {
    margin: 0;
    text-align: center;
  }

  .label {
    display: flex;
    justify-content: center;
  }
    
  .voice-icon {
    text-align: center;
    width: 100%;
  }
    
  .voice-icon img {
    margin-bottom: 20px;
    margin-right: none;
  }


}


/*===========================================================*/
/*利用価格
/*===========================================================*/


.price {
    color: #2B5388;
    position: relative;
    margin: 4rem 0 1rem;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.price::before {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(17,37,64,0.1);
    font-size: 4rem;
    text-transform: uppercase;
    content: 'PRICE';
    z-index: -1;
}



ul.pricecards {
    list-style: none;
    margin: auto 5rem;
    padding: 0;
}

.pricecards{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}

.pricecard{
  flex: 0 0 32%;
  text-align: left;
  border: 1px solid #eee;
  box-shadow: 0 0 10px #d9d9d9;
  padding-bottom: 1rem;
  box-sizing: border-box;
  margin:0 auto 3em;
 
}

.pricecard h3{
    background: #fff;
    color: #2b5388;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    padding: 15px;
    margin: 0;
}

.pricecard.off{
    background: #fff;
    padding-bottom: 1.5rem;
}


.pricecard.on{
    border: 3px solid #2b5388;
    background: #fff;
    padding-bottom: 1.5rem;
}
.pricecard.on h2{
    background: #2b5388;
    color: #fff;
    padding: 10px;
    margin: 0;
}
.pricecard h4{
    font-size: 300%;
    margin: 0 auto;
    padding: 1rem 0 0;
}

.pricecard h5 {
    font-weight: 500;
    font-size: 1.2rem;
    color: #2b5388;
    margin-bottom: 10px;
}

.pricecard.on h4 {
    padding: 20px;
}
.pricecard p{
    margin: 0;
    padding: 0.9rem;
    text-align: left;
}

.price-1 {
　white-space: nowrap;
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
}

.tax {
　white-space: nowrap;
  font-size: 0.9rem;
}



.card-features {
  list-style: none;
  padding: 15px;
}

.card-features ul ::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #d9ecf4;
}


.card-features ul {
   list-style: none;
   text-align: left;
   font-size: 0.9rem;
}

.card-features li {
	padding: 6px 10px 0px 40px;
	position: relative;
    line-height: 1.8rem;
}

.card-features li::before {
    content: "";
    display: block;
    height: 0.5rem;
    width: 1rem;
    border-bottom: 3px solid #2B5388;
    border-left: 3px solid #2B5388;
    transform: rotate(-45deg);
    position: absolute;
    top: 1rem;
    left: 1rem;
}


.osusume {
    background: transparent;
    padding: 20px 20px 0;
    position: relative;
    line-height: 1.8;
}

.osusume h4 {
    font-weight: 500;
    font-size: 1.2rem;
    color: #2b5388;
    margin-bottom: 10px;
}

.osusume ul {
   list-style: none;
   text-align: left;
}

.osusume li {
	padding: 6px 10px 0px 30px;
	position: relative;
    line-height: 1.8rem;
}

.osusume li::before {
    content: "・";
    display: block;
    color: #2b5388;
    height: 0.5rem;
    width: 1rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}


.mitsumori {
    font-weight: 400;
    text-align: center;
    padding: 10px;
}




@media screen and (max-width: 900px){
ul.pricecards {
    list-style: none;
    margin: auto 2rem;
    padding: 0;
}

.profile_card, .pricecards, .profile_cards {
    flex-direction: column;
    -webkit-flex-direction: column;
}
    
  .pricecard, .card_photo {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}
    
  .pricecard.on {
    order: 1;
    -webkit-order: 1;
}
    
  .pricecard.off {
    order: 2;
    -webkit-order: 2;
}
}


/*===========================================================*/
/*よくあるご質問
/*===========================================================*/

.faq {
    color: #2B5388;
    position: relative;
    margin: 4rem 0 0;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
}

.faq::before {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(17,37,64,0.1);
    font-size: 4rem;
    text-transform: uppercase;
    content: 'FAQ';
    z-index: -1;
}


.accordion {
    padding: 1rem;
}

.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-check {
    display: none;
}

.accordion-list {
  border-top: 1px solid #2B5388;
}

.accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.accordion-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%) rotate(0deg);
    color: #C98F2B;
    text-align: center;
    font-size: 1.5rem;
    content: '+';
    font-weight: 600;
}

.accordion-box {
    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: transparent;
    transition: all .5s;
}

.accordion-check:checked~.accordion-box {
    height: auto;
    opacity: 1;
    padding: 1rem;
}

.accordion-check:checked+.accordion-label:after {
    transform: translateY(-50%) rotate(45deg);
}


.accordion-box p {
    line-height: 1.5;
}

.accordion-icon {
  margin-right: 8px;
  color: #C98F2B;
  font-size: 1.3em; /* 親要素(.faq-question)のフォントサイズ基準 */
  font-weight: 500;
}




/*
FOOTER
================================================ */
footer {
    width: 100%;
    margin-top: 50px;
    color: #EBECEB;
    background-color: #2B5388;
    line-height: normal;
    text-align: center;
}

.footer-contents {
    padding: 50px;
    font-size: 0.8rem;  
    text-align: center;
    line-height: 1.8;
    font-style: normal;
}

.footer-hr {
    border: 0.2px solid #EBECEB;
    margin: 10px;
}


/* 情報・地図 */
#location .wrapper {
    margin: 20px;
    padding: 10px 0 0 0;
    flex-direction: column;
}

.location-info {
    padding: 30px;
}

.location-info,
.location-map {
    width: 100%;
}

.sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.favicon-top {
    width: 2rem;
    margin-left: 0.8rem;
}

.favicon {
    width: 40px;
    padding: 10px;
}

/*frame*/
iframe {
    width: 100%;
    height: 300px;
}




@media (min-width: 860px) {
   br.br-sp2 {
    display: none;
  }
}

/*
DESKTOP SIZE
================================================ */
@media (min-width: 768px) {
/* Common */
    main {
        padding: 5rem;
    }
    .btn {
        width: auto;
        margin: 20px 0;
        
    }
    .title {
        font-size: 1.875rem;
    }

   br.br-pc {
    display: inline;
  }    
    
   br.br-sp {
    display: none;
  }
        
    
    
/* Table */
    tr:nth-child(odd) {
        background: #f8f6f2;
    }
    tr:nth-child(even) th {
        background: #EBECEB;
    }

    th,
    td {
        padding: 1.25rem;
        display: table-cell;
    }
    th {
        width: 24%;
        vertical-align: middle;
    }
    td {
        width: 76%;
    }


   
/*aori*/

  .aori::before {
    border-left: solid 3px;
    border-top: solid 3px;
    top: 0;
    left: 20%;
}

  .aori::after {
    border-right: solid 3px;
    border-bottom: solid 3px;
    bottom: 0;
    right: 20%;
}
    
.aori-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
    

    
    
/*事業内容*/
   .service-1 {
    flex-direction: row;
    padding: 0 50px;
 }

  .service-box {
    flex: 1;
 }      

       
    
/*利用料金*/
    
  .price-flex {
      display: flex;
      flex-direction: row;
      justify-content: center;
  }
    

    
/*Faq*/
    
    .accordion {
    width: 70%;
 }
    
    
/* 事務所情報・地図 */
    #location {
        padding: 4% 0;
    }
    #location .wrapper-location {
        display: flex;
        justify-content: space-between;
        max-width: 90%;
    }
    .location-info {
        width: 40%;
    }
    .location-info p {
        padding: 12px 10px;
    }
    .location-map {
        width: 60%;
    }
    
    /*frame*/
    iframe {
        width: 100%;
        height: 400px;
    }
    
}



    