@charset "UTF-8";
body {
  font-family: "Yu Gothic", YuGothic, Helvetica, Arial,
  "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
  Meiryo, メイリオ, sans-serif;
	color: #4e4746;
}

img{
	max-width: 100%;
}

.section-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.pc-only {
  /* PCの時は（横幅769px以上の時は）表示する */
  display: block;

}
.sp-only {
  /* SPの時は（横幅768px以下の時は）表示しない */
  display: none;

}

@media screen and (max-width: 768px) {
  .section-inner {
    /* 左右に24pxの余白（padding） */
    padding: 0 24px;
    /* 最大幅を550pxに */
    max-width: 550px;
  }
  .pc-only {
    /* PCの時は（横幅769px以上の時は）表示しない */
    display: none;
  }
  .sp-only {
    /* SPの時は（横幅768px以下の時は）表示する */
    display: block;
  }
}

/* テキスト */
h2.large {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.13em;
}

h2.small {
  font-weight: bold;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: 0.13em;
	background-color: #f2b5af;
	color: #fff;
	width: 135px;
  height: 40px;
	text-align: center;
	border-radius: 10px;
}

p.large {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: bold;
}

p.medium {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  h2.large {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.13em;
  }

  h2.small {
    font-weight: bold;
    font-size: 13px;
    line-height: 40px;
    letter-spacing: 0.13em;
  }

  p.large {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.06em;
    font-weight: bold;
  }

  p.medium {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.06em;
  }
}

/* ボタン */
.button-large {
  display: block;
  width: 170px;
  height: 50px;
  background-color: #f5b684;
  color: #fbf1e9;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.12em;
  border-radius: 30px;
  line-height: 50px;
  text-align: center;
	text-decoration: none;
}

.button-border {
  display: block;
  width: 192px;
  height: 50px;
	background-color: #ffffff;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
	text-decoration: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  .button-large {
    display: block;
    width: 165px;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    border-radius: 24px;
  }
}

/* レイアウト */
.col-2{
	display: flex;
	justify-content: space-between;
}

.col-2 .item{
 width: calc((100% - 24px)/2);
}

@media screen and (max-width: 768px) {
  .col-2 {
    /* 横並びだったものを縦積みになるようにする */
    display: block;

  }
  .col-2 .item {
    /* caclで計算していた横幅は全てよこいっぱいに広がるようにする */
    width: 100%;
    padding: 20px;
  }
}

#header {
	background-color: #fbf1e9;
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	position: fixed;
	top: 0;
	z-index: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  width: 240px;
}

.header-logo a {
  display: flex;
}

.gnav-pc-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.gnav-pc li {
  display: inline;
  margin-right: 40px;
}

ul.gnav-pc li a {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  letter-spacing: 0.13em;
  color: #4e4746;
  font-weight: bold;
	text-decoration: none;
}

ul.gnav-pc li a:hover{
	color: #f2b5af;
}

#menu-button{
  display: none;
}

.gnav-sp-wrap{
  display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  #header {
    height: 60px;
    padding: 0;
  }

  #header h1 {
    padding-left: 20px;
  }

  #header h1 a {
    display: flex;
  }

  .gnav-pc-wrap {
    display: none;
  }

  #menu-button {
    display: block;
    width: 60px;
    height: 60px;
    padding: 22px 18px;
  }

  .menu-button-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .menu-button-inner span {
    display: block;
    transition: all .4s;
    width: 100%;
    height: 2px;
    background-color: #4e4746;
    position: absolute;
  }

  .menu-button-inner span:nth-child(1) {
    top: 0;
  }

  .menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .menu-button-inner span:nth-child(3) {
    bottom: 0;
  }

  .menu-button-inner.active span:nth-child(1) {
      transform: translateY(7px) rotate(-45deg);
      width: 100%;
  }

  .menu-button-inner.active span:nth-child(2) {
    opacity: 0;/*真ん中の線は透過*/
  }

  .menu-button-inner.active span:nth-child(3){
      transform: translateY(-7px) rotate(45deg);
      width: 100%;
  }


  .gnav-sp-wrap {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
  }

  ul.gnav-sp li {
    text-align: center;
    margin-bottom: 30px;
  }

  ul.gnav-sp li a {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #4e4746;
    font-weight: bold;
    text-decoration: none;
  }

  .gnav-sp-wrap a {
    margin: 0 auto;
  }
}

#mainvisual {
	width: 100vw;
  height: calc(100vh - 70px);
	background-image: url("../images/WHfv1加工済み.jpg");
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	position: relative;
	margin-top: 70px;
}

/* メインビジュアル見出し */
#copy-wrap {
  position: absolute;
  left: 700px;
  bottom: 550px;
}

#copy-wrap2 {
  position: absolute;
  left: 1070px;
  bottom: 540px;
}

#copy-wrap3 {
  position: absolute;
  left: 700px;
  bottom: 450px;
}

#copy-wrap4 {
  position: absolute;
  left: 750px;
  bottom: 360px;
}

.maincopy {
  color: #fff;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.subcopy {
  color: #fff;
  font-size: 35px;
  font-weight: normal;
}

.badge {
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 60px;
  right: 160px;
}

#mainvisual .button-large {
  display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  #mainvisual {
    /* 横幅と高さを常に同じサイズで表示する（横幅は100vw） */
    width: 100vw;
    height: 100vw;
    background-image: url("../images/mainvisual-sp.png");
    margin-top: 60px;
    margin-bottom: 30px;
  }

  #copy-wrap {
    left: 120px;
    top: 35px;
  }

  #copy-wrap2 {
    position: absolute;
    left: 270px;
    top: 26px;
  }

  #copy-wrap3 {
    position: absolute;
    left: 107px;
    top: 66px;
  }

  #copy-wrap4 {
    position: absolute;
    left: 130px;
    top: 100px;
  }

  .maincopy {
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .subcopy {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .badge {
    width: 94px;
    height: 94px;
    bottom: 70px;
    right: 30px;
  }

  #mainvisual .button-large{
    position: absolute;
    display: block;
    text-align: center;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

#私たちについて {
  background-color: #ffffff;
	padding-bottom: 30px;
	padding-top: 20px;
}
#私たちについて .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 650px;
  margin: 0 auto;
}

#私たちについて h2.large {
  text-align: center;
	padding-top: 30px;
}

#私たちについて p.medium {
	padding: 30px;
}

@media screen and (max-width: 768px){
  #私たちについて .dashed{
    width: 317px;
  }
}


#代表挨拶 {
  background-color: #fbf1e9;
	padding-bottom: 20px;
	padding-top: 20px;
}

#代表挨拶 .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 250px;
  margin: 0 auto;
}

#代表挨拶 h2.large {
  text-align: center;
	padding-top: 30px;
}

.owner{
	display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.owner .owner-text{
	width: 690px;
	height: 390px;
  padding: 40px;
}
.owner-text p.large{
  text-align: center;
  padding: 10px;
  }
.owner-text p.medium{
  padding: 50px;
}
.owner .owner-img{
 width: 260px;
 height: 390px;
}
.owner .owner-img img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  display: block;
  border-radius: 0px 5px 5px 0px;
}

@media screen and (max-width: 768px) {
  .owner {
    /* 横並びだったものを縦積みになるようにする */
    display: block;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .owner .owner-text {
    /* caclで計算していた横幅は全てよこいっぱいに広がるようにする */
    width: 100%;
    padding: 7px;
    height: 300px;
  }
  .owner-text p.large span {
    display: block;
  }
  .owner-text p.medium{
    padding: 0px;
    margin-top: 30px;
  }
  .owner .owner-img {
    /* caclで計算していた横幅は全てよこいっぱいに広がるようにする */
    width: 260px;
    padding: 0;
    margin: 0 auto;
  }
  .owner .owner-img img{
    border-radius: 5px;
  }
}

#代表挨拶 p.medium span {
 display: block;
}

#事業内容 {
  background-color: #ffffff;
	padding-bottom: 20px;
	padding-top: 20px;
}

#事業内容 .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 250px;
  margin: 0 auto;
}

#事業内容 h2.large {
  text-align: center;
	padding-top: 30px;
}

#事業内容 p.medium {
  text-align: center;
	padding: 40px;
}

#事業内容 .section-inner {
  text-align: center;
	padding-bottom: 55px;
}

#事業内容 img{
  margin: 0 auto;
}

#ご利用者の声 {
  background-color: #fbf1e9;
  padding-bottom: 20px;
	padding-top: 20px;
}

#ご利用者の声 .title-line {
  padding-bottom: : 30px;
}

#ご利用者の声 .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 300px;
  margin: 0 auto;
}

#ご利用者の声 h2.large {
  text-align: center;
	padding-top: 30px;
}

.voice{
	display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.voice .voice-img{
 width: 260px;
 height: 390px;
}
.voice .voice-img img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  display: block;
  border-radius: 5px 0px 0px 5px;
}

.voice .voice-text{
	width: 690px;
	height: 390px;
  padding: 40px;
}
.voice-text p.large{
  text-align: center;
  padding: 10px;
  }
.voice-text p.medium{
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .voice {
    /* 横並びだったものを縦積みになるようにする */
    display: block;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .voice .voice-img {
    /* caclで計算していた横幅は全てよこいっぱいに広がるようにする */
    width: 260px;
    padding: 0;
    margin: 0 auto;
  }
  .voice .voice-img img{
    border-radius: 5px;
    padding-top: 20px;
  }

  .voice .voice-text {
    /* caclで計算していた横幅は全てよこいっぱいに広がるようにする */
    width: 100%;
    padding: 7px;
    height: 220px;
  }
  .voice-text p.large span {
    display: block;
  }
  .voice-text p.medium{
    padding: 0px;
    margin-top: 30px;
  }
}

#よくある質問 {
  background-color: #ffffff;
	padding-top: 20px;
}

#よくある質問 h2.large {
  text-align: center;
	padding-top: 30px;
}

#よくある質問 .title-line {
  padding-bottom: 30px;
}

#よくある質問 .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 300px;
  margin: 0 auto;
}


#よくある質問 .section-inner {
	padding-bottom: 55px;
}

.faq {
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #fbf1e9;
}

.faq-head, .faq-body {
  border-radius: 8px;
  padding: 20px 30px;
}

.faq-head {
  position: relative;
}

.faq-head::after {
	content: "";
	display: block;
	background-image: url("../images/arrow.png");
	background-size: contain;
  width: 14px;
  height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 24px;
	margin: auto;
}

.faq-body {
  border-radius: 8px;
  display: none;
}

#cta {
 background-image: url(../images/cta背景.jpg);
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 padding-bottom: 20px;
 padding-top: 50px;
}

#cta .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 350px;
  margin: 0 auto;
}

#cta h2.large {
  text-align: center;
}

#cta p.medium {
  text-align: center;
	padding-top: 30px;
	padding-bottom: 60px;
}

#cta p.medium span {
 display: block;
}

#cta .button-large {
  margin: 0 auto;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
  #cta {
    /* スマホ用の背景画像を配置する */

    padding: 90px 0;
  }

  #cta h2.large span {
    display: block;

  }

  #cta p.medium span {
    /* 本文をスマホでは改行しないようにする */
    display: inline;

  }
}

#事業所情報 {
  background-color: #fbf1e9;
	padding-bottom: 20px;
	padding-top: 20px;
}

#事業所情報 .title-line {
  padding-bottom: 30px;
}

#事業所情報 .dashed {
  border-bottom: 4px dashed #ff9999;
  padding: 10px;
  width: 250px;
  margin: 0 auto;
}

#事業所情報 h2.large {
  text-align: center;
	padding-top: 30px;
}

#事業所情報 .button-border {
  margin: auto;
	margin-top: 40px;
}

#事業所情報 .name h2.small {
	display: inline-block;
	margin-bottom: 20px;
	margin-left: 20px;
	vertical-align: middle;
}
#事業所情報 .name p.medium {
	display: inline-block;
	margin-bottom: 20px;
	margin-left: 20px;
	vertical-align: middle;
}

#事業所情報 .name-2 h2.small {
	display: inline-block;
	margin-bottom: 20px;
	margin-left: 20px;
	vertical-align: text-top;
}
#事業所情報 .name-2 p.medium {
	display: inline-block;
	margin-bottom: 20px;
	margin-left: 20px;
	vertical-align: text-top;
}

#事業所情報 .name-2 p.medium a{
  text-decoration: none;
  color:#4e4746;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .name {
    text-align: center;
  }
  .name h2.small{
    margin: 20px;
  }
  .name p.medium{
    margin-bottom: 20px;
  }

  .name-2 {
    text-align: center;
  }
  .name-2 h2.small{
    margin: 20px;
  }
  .name-2 p.medium{
    margin-bottom: 20px;
  }
}

.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

#footer {
	background-color: #4e4746;
	color: #fff;
	text-align: center;
	padding-bottom: 20px;
	padding-top: 20px;
}

#footer .section-inner {
	padding-bottom: 0px;
}

.about {

}








/*===============================================
PC : 画面の横幅が769px以上
=================================================*/

.example {
	font-size: 50px;
	color: #99293D;
}



/*ここからメディアクエリで各デバイスサイズに書き分けます
CSSは上から下に継承されるので、変化させたいところだけ書けばOK*/



/*================================================
Tablet : 画面の横幅が768pxまで
==================================================*/
@media screen and (max-width: 768px){
	.example {
		font-size: 30px;
		color: #2D81B1;
	}
}


/*================================================
Smartphone :  画面の横幅が640pxまで
=================================================*/
@media screen and (max-width:640px){
	.example {
		font-size: 20px;
		color: #AD8651;
	}
}
