@charset "UTF-8";

/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 17px;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.3vw;
    /*1L30文字*/
  }
}

body {
  color: #333;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  /*bold700 regular400 light 300*/
  position: relative;
  background-image: url(../img/common/back_paper.png);
  background-size: 100%;
  background-repeat: repeat-y;
  overflow-x: hidden;
}

a {
  color: #558080;
  text-decoration: none;
}

img {
  width: 100%;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.04rem;
}

.mincho-light {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.04rem;
}

.marugo {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

/* ↓ 共通スタイル ------------------------*/
.rounded {
  border-radius: 0.2rem !important;
}

/*imgタグトリミング*/
.object-fit-img {
  object-fit: cover;
  font-family: "object-fit: contain;";
}

/*画像のマウスオーバー*/
a img {
  transition: 0.3s ease;
}

a img:hover {
  opacity: 0.6;
  transition: 0.3s ease;
}

/* ↓ 横幅 ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1200px;
  width: 85%;
  margin: auto;
}

.pcWidth-l {
  max-width: 1024px;
  width: 85%;
  margin: auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 85%;
  margin: auto;
}

.pcWidth-s {
  max-width: 760px;
  width: 85%;
  margin: auto;
}

.pcWidth-ss {
  max-width: 900px;
  width: 85%;
  margin: auto;
}

@media screen and (min-width: 1400px) {
  .pcWidth-xl {
    max-width: 1216px;
    width: 85%;
  }

  .pcWidth-l {
    max-width: 1152px;
    width: 85%;
  }

  .pcWidth-m {
    max-width: 1080px;
    width: 85%;
  }

  .pcWidth-s {
    max-width: 912px;
    width: 85%;
  }
}

/*セクションと見出しの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px;
}

.secOuter-m {
  padding: 5rem 0px;
}

.secOuter-l {
  padding: 7rem 0px 3.5rem;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px;
  }

  .secOuter-m {
    padding: 3rem 0px;
  }

  .secOuter-l {
    padding: 4rem 0px;
  }
}

.headline-l {
  margin-bottom: 5rem;
}

.headline-m {
  margin-bottom: 3rem;
}

@media screen and (max-width: 540px) {
  .headline-l {
    margin-bottom: 3rem;
  }

  .headline-m {
    margin-bottom: 2rem;
  }
}

.textCenter {
  text-align: center;
}

/* ↓ ボタン ------------------------*/
.btn {
  display: inline-block;
  border-radius: 2rem;
  background-color: #00a1a6;
  text-align: center;
  padding: 1rem 5.5rem 1rem 4.5rem;
  position: relative;
}

@media screen and (max-width: 540px) {
  .btn {
    padding: 1rem 3rem;
    border-radius: 4rem;
  }
}

.btn .icon {
  width: 0.6rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-75%);
}

.btn p {
  color: #fff;
  font-weight: 500;
}

.btnArea--left {
  text-align: left;
}

/* ↓ ヘッダー ------------------------*/
.gnavOuter {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  z-index: 1000;
}

@media screen and (max-width: 750px) {
  .gnavOuter {
    display: none;
  }
}

/*↑背景固定の場合はabsolute、追従の場合はfixedに変更*/

.gnavInner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.gNavLeft {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  margin-left: 1rem;
}

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

.header_btn img {
  width: auto;
  height: 3.5rem;
}
@media screen and (max-width: 750px) {
  .header_btn img {
    width: auto;
    height: initial;
  }
}
.gnavunder {
  padding: 0.75rem 0;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #558080;
  font-weight: 500;
  font-size: 0.85rem;
  height: 3rem;
}

.gnavunder .item {
  padding: 0 1.4rem;
  height: 3rem;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.gnavunder .item:hover {
  background-color: #ebebeb;
  transition: 0.3s ease;
}

.gnavunder .line {
  width: 1px;
  height: 2rem;
  border-right: 1px solid #a7bcbc;
}

.fixedNav {
  position: fixed;
  z-index: 10;
  top: 1.8rem;
  right: 6.5rem;
}

.menuArea {
  width: 100%;
  height: 6.5rem;
}

@media screen and (max-width: 750px) {
  .menuArea {
    height: 0rem;
  }
}

.gnavunder .first-level {
  pointer-events: none;
}

.gnavunder .single:hover {
  opacity: 0.4;
  transition: 0.3s ease;
}

.gnavunder li {
  position: relative;
}

.gnavunder li ul {
  position: absolute;
  width: 100%;
  left: 60%;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  display: none;
  transition: 0.3s ease;
  margin: 20px auto;
  /* 以下の１行でドロップシャドウが適用される */
  -webkit-filter: drop-shadow(6px 6px 10px rgba(0, 0, 0, 0.2));
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}

.gnavunder li:hover ul {
  top: 1.3rem;
  width: 11rem;
  left: 0%;
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  display: block;
  transition: 0.3s ease;
}

.gnavunder li ul:before,
.gNavRignavunderght li ul:after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  right: 0px;
}

.gnavunder .second-level li {
  padding: 0.5rem;
  padding-left: 0rem;
  padding-right: 0rem;
  transition: 0.3s ease;
  position: relative;
  text-align: left;
}

.gnavunder .second-level li {
  border-bottom: 1px solid #558080;
}

.gnavunder .second-level li:last-child {
  border-bottom: none;
}

.gnavunder .second-level li a {
  display: block;
}

.gnavunder .second-level li span {
  right: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  color: #888888;
}

.gnavunder .second-level li:hover {
  opacity: 0.5;
}

.fixedlogo {
  width: 9.5rem;
  position: fixed;
  margin-top: 1rem;
  margin-left: 1rem;
  z-index: 30;
}

@media screen and (max-width: 750px) {
  .fixedlogo {
    display: none;
  }
}

.fixed_sp {
  position: fixed;
  width: 2.5rem;
  right: 0;
  top: 6rem;
  z-index: 50;
}

@media screen and (min-width: 750px) {
  .fixed_sp {
    display: none;
  }
}

.fixed_sp .item {
  margin-bottom: 1rem;
  width: 100%;
}

.header_sp {
  background-color: #fff;
  height: 3.5rem;
  width: 100%;
  position: fixed;
  z-index: 100;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 750px) {
  .header_sp {
    display: none;
  }
}

.header_sp_inner {
  background-color: #fff;
  width: 100%;
  height: 3.5rem;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.sp_logo {
  width: 8rem;
}

.fixed_sns {
  display: flex;
  justify-content: center;
  right: 0;
  top: 2rem;
  z-index: 50;
  margin-right: 3.5rem;
}

.fixed_sns .item {
  width: 2.2rem;
  margin-left: 1rem;
}

.fixed_sns_pc {
  margin-right: 1.5rem;
}

.fixed_sns_pc .item {
  width: 1.8rem;
  margin-left: 1rem;
}

.fixed_sns_footer {
  margin-right: 0rem;
  margin-top: 2rem;
}

/* ↓ パンくずリスト ------------------------*/
.bread {
  margin-top: -0.5rem;
  color: darkgray;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  height: 1rem;
}

.bread div {
  max-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.bread a {
  color: darkgray;
}

/* ↓ ドロワーメニューカスタマイズ ------------------------*/
.fat-nav li {
  list-style-type: none;
  text-align: center;
  padding: 0.55rem;
  font-size: 1.2em;
  line-height: 1.4;
  font-weight: bold;
}

.fat-nav li img {
  width: 17rem;
  margin-bottom: 3rem;
}

/*ホームアイコンを追加*/
.navHome span {
  position: relative;
}

.navHome span:before {
  position: absolute;
  top: 0rem;
  left: -2rem;
  content: "";
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: url(../img/home.svg) no-repeat;
  background-size: contain;
}

/* ↓ セクション ｜ FV ------------------------*/
.fv {
  height: 34vw;
  height: 560px;
  position: relative;
  background-image: url(../img/top/back_fv.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 830px) {
  .fv {
    height: 45vh;
    min-height: initial;
  }
}

@media screen and (max-width: 540px) {
  .fv {
    height: 30rem;
    min-height: initial;
  }
}

.fv_inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  .fv_inner {
    display: block;
  }
}

.fv_dog {
  position: absolute;
  bottom: -1.2rem;
  width: 12rem;
  right: 5rem;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  .fv_dog {
    position: absolute;
    bottom: -1rem;
    width: 10rem;
    right: 2rem;
    z-index: 10;
  }
}

.fv_inner .left h1 {
  position: relative;
  left: 8vw;
  width: 85%;
  max-width: 580px;
  height: 100%;
  max-height: 82%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.fv_btn_flex {
  display: flex;
  position: relative;
  justify-content: space-around;
  left: 8vw;
  width: 85%;
  max-width: 690px;
}

.fv_btn_flex div {
  width: 45%;
}
.fv_btn_flex div img {
  width: 100%;
  height: auto;
}
.fv_inner .left {
  width: 60%;
}
.fv_inner .right {
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 540px) {
  .fv_inner .left {
    width: 90%;
    margin: auto;
    margin-left: -0.5rem;
    padding-top: 7rem;
  }
  .fv_inner .right {
    width: 80%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 60%;
    z-index: -1;
  }
}
.fv_inner .right .fv_japan {
  position: relative;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}
.fv_inner .right .fv_japan img {
  position: relative;
  max-height: 100%;
  object-fit: contain;
}

.fv_futon {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0rem;
  height: 80%;
  z-index: 0;
}

@media screen and (max-width: 540px) {
  .fv_futon {
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0rem;
    height: 50%;
    z-index: 0;
  }
}
.fv_futon img {
  height: 100%;
}

.fv_inner .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ↓ セクション ｜ FV ------------------------*/
.slidebanner {
  padding: 3rem 0;
  padding-bottom: 0;
  position: relative;
}

.slidebanner .water {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .slidebanner .water {
    width: 70vw;
  }
}

/* ↓ セクション ｜ フッタースライドバナー ------------------------*/
.topCarousel {
  overflow: initial;
}

.topCarousel .item {
  margin: 0 1.5rem;
  width: auto;
  border: 2px solid #c7c7c7;
}

.topCarousel .item img {
  height: auto;
}

@media screen and (min-width: 1200px) {
  .topCarousel .item {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 540px) {
  .topCarousel .item {
    margin: 0 0.5rem;
  }
}

/* ↓ セクション ｜ zenkoku_area ------------------------*/
.zenkoku_area {
  padding: 6rem 0;
  background-color: #dff3f7;
  position: relative;
  overflow: hidden;
}
.zenkoku_area .japan_map {
  height: 130%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.zenkoku_area .japan_map img {
  height: 100%;
  width: auto;
}
.zenkoku_area .head_area {
  height: 6rem;
  position: relative;
  z-index: 0;
  margin-bottom: 2.5rem;
}
.zenkoku_area .head_area img {
  height: 100%;
}

@media screen and (max-width: 540px) {
  .zenkoku_area {
    padding: 3rem 0;
  }
  .zenkoku_area .head_area {
    height: 3rem;
    margin-bottom: 1.5rem;
  }
  .zenkoku_area .head_area img {
    height: 100%;
  }
}

.zenkoku_area .button_area ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}
.zenkoku_area .button_area .item {
  background-color: #00a1a6;
  color: #fff;
  margin: 0 0.5rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
}

.zenkoku_area .button_area .item {
  background-color: #00a1a6;
  color: #fff;
  margin: 0 0.5rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
.zenkoku_area .button_area .item.item_hokkaido {
  padding: initial;
}

.zenkoku_area .button_area .item.item_hokkaido a {
  padding: 1rem 3rem;
  color: #fff;
  display: block;
}

.zenkoku_area .button_area .item:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 540px) {
  .zenkoku_area .button_area ul {
    display: flex;
    justify-content: start;
    margin-bottom: 0rem;
  }

  .zenkoku_area .button_area ul:nth-child(2) {
    display: none;
  }

  .zenkoku_area .button_area .item {
    background-color: #00a1a6;
    color: #fff;
    margin: 0.5rem 2.5%;
    text-align: center;
    width: 45%;
    padding: 1rem 0rem;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  width: 80%;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content {
  padding: 1.5rem;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.close:hover {
  color: #000;
}
@media screen and (max-width: 540px) {
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 15px;
    cursor: pointer;
  }
}
.zenkoku_area .modal-content .button_area ul {
  justify-content: left;
}
.zenkoku_area .modal-content .button_area .item {
  width: 32%;
  padding: initial;
  margin: initial;
  margin-bottom: 1rem;
}

.zenkoku_area .modal-content .button_area .item:nth-child(3n-1) {
  margin: 0 2%;
  margin-bottom: 1rem;
}
.zenkoku_area .modal-content .button_area .item a {
  display: block;
  color: #fff;
  padding: 1rem 0;
}

.zenkoku_area .modal-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zenkoku_area .modal-content h2 img {
  width: 1.5rem;
  margin: 0 1rem;
}

@media screen and (max-width: 540px) {
  .zenkoku_area .modal-content h2 {
    font-size: 1.2rem;
  }
  .zenkoku_area .modal-content h2 img {
    width: 1.1rem;
  }
}
/* ↓ セク｜3つのこだわり ------------------------*/
.point_three {
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .point_three .secOuter-m {
    padding-top: 2rem;
  }
}

.point_three .sec_head {
  max-width: 800px;
  margin: auto;
  margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
  .point_three .sec_head {
    margin-bottom: 3.5rem;
  }
}

.point_three .top_points {
  display: flex;
  margin-bottom: 6rem;
}

.point_three .top_points.reverse {
  flex-direction: row-reverse;
}

.point_three .top_points .left {
  width: 50%;
}

.point_three .top_points .right {
  width: 50%;
  padding-left: 3rem;
  position: relative;
}

@media screen and (max-width: 540px) {
  .point_three .top_points {
    display: block;
    margin-bottom: 6rem;
  }

  .point_three .top_points .left {
    width: 100%;
  }

  .point_three .top_points .right {
    width: 100%;
    padding-left: 0rem;
    margin-top: 2rem;
  }
}

.point_three .top_points.reverse .right {
  padding-left: 0rem;
  padding-right: 3rem;
}

@media screen and (max-width: 540px) {
  .point_three .top_points.reverse .right {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

.point_three .top_points .left .head {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
}

.point_three .top_points .left .head span {
  background: linear-gradient(transparent 60%, #bee7f0 60%);
}

@media screen and (max-width: 540px) {
  .point_three .top_points .left .head {
    margin: auto;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    padding-left: 0.5rem;
  }
}

.point_three .top_points .left .icon {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 4rem;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .point_three .top_points .left .icon {
    position: absolute;
    width: 3.2rem;
    top: -1.8rem;
    left: -1.8rem;
    z-index: -1;
  }
}

.point_three .top_points .left .sentence {
  line-height: 2.5;
  font-weight: 500;
}

@media screen and (max-width: 540px) {
  .point_three .top_points .left .sentence {
    line-height: 2;
  }
}

.point_three .top_points .right .chara {
  position: absolute;
}

.point_three .top_points .right .chara1 {
  top: -3rem;
  right: 3.5rem;
  width: 8rem;
}

@media screen and (max-width: 540px) {
  .point_three .top_points .right .chara1 {
    top: -2rem;
    right: 3.5rem;
    width: 6rem;
  }
}

.point_three .top_points .right .chara2 {
  bottom: 1rem;
  left: 1rem;
  width: 7.5rem;
}

@media screen and (max-width: 540px) {
  .point_three .top_points .right .chara2 {
    width: 6.5rem;
  }
}

.point_three .top_points .right .chara3 {
  bottom: 1rem;
  right: 1rem;
  width: 11rem;
}

@media screen and (max-width: 540px) {
  .point_three .top_points .right .chara3 {
    width: 9.5rem;
  }
}

.point_three .top_points .right .backblue_top {
  position: absolute;
}

.point_three .top_points .right .backblue_top1 {
  bottom: -2rem;
  right: -20vw;
  width: 37rem;
  z-index: -1;
}

.point_three .top_points .right .backblue_top2 {
  top: 5rem;
  left: -20vw;
  width: 37rem;
  z-index: -1;
}

.top_faq {
  padding: 3rem 0 6rem;
  background-color: #dff3f7;
}

.top_faq_head {
  height: 10rem;
  text-align: center;
}

.top_faq_head img {
  height: 100%;
  width: auto;
}

.btn_white {
  background-color: #fff;
}
.btn_white p {
  color: #00a0a5;
}
.top_faq .top_faq_wrap {
  margin-bottom: 4rem;
}
/* ↓ セク｜sec_about ------------------------*/

.sec_about {
  padding: 7rem 5rem;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 540px) {
  .sec_about {
    padding: 3rem 2rem 7rem;
    position: relative;
  }

  .sec_about .secOuter-m {
    padding-bottom: 0;
  }
}

.sec_about .content {
  background-color: #fff;
  position: relative;
  padding: 4rem 4rem 2rem;
  border-radius: 1rem;
}

@media screen and (max-width: 1160px) {
  .sec_about .content {
    padding: 2.5rem 4rem 2rem;
  }
}

@media screen and (max-width: 540px) {
  .sec_about .content {
    padding: 2rem 2rem 0;
  }
}
.sec_about .water {
  position: absolute;
  bottom: 0;
  right: 15vw;
  transform: translateX(50%) rotate(-180deg);
  width: 30rem;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .sec_about .water {
    transform: translateX(0%) rotate(-180deg);
    right: 0;
    bottom: 3rem;
  }
}

.sec_about .content .flex {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 540px) {
  .sec_about .content .flex {
    display: block;
    justify-content: center;
  }
}

.sec_about .content .flex .left {
  width: 50%;
  font-size: 1.5vw;
  line-height: 2.75;
  font-weight: 500;
  margin-top: 3rem;
}
.sec_about .content .flex .right {
  width: 35%;
  margin-top: 1rem;
  margin-bottom: -2rem;
}

@media screen and (min-width: 1200px) {
  .sec_about .content .flex .left {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1160px) {
  .sec_about .content .flex .left {
    width: 60%;
    margin-top: 0.5rem;
  }
  .sec_about .content .flex .right {
    width: 35%;
  }
}

@media screen and (max-width: 540px) {
  .sec_about .content .flex .left {
    width: 100%;
    font-size: 1rem;
    line-height: 2;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .sec_about .content .flex .right {
    width: 80%;
    margin: auto;
  }
}

.sec_about .sec_head {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -140%);
  width: 65%;
}
@media screen and (max-width: 540px) {
  .sec_about .sec_head {
    width: 100%;
  }
}
/* ↓ セク｜sec_price ------------------------*/
.sec_price {
  margin-bottom: 8rem;
}
@media screen and (max-width: 540px) {
  .sec_price {
    margin-bottom: 5rem;
  }
}
.sec_price .sec_head {
  height: 5.2rem;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .sec_price .sec_head {
    height: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.sec_price .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7rem;
  position: relative;
}
.sec_price .flex .price_note {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  font-size: 0.8rem;
}

@media screen and (max-width: 540px) {
  .sec_price .flex {
    display: block;
    margin-bottom: 7rem;
  }
  .sec_price .flex .price_note {
    width: 75%;
    font-size: 0.9rem;
  }
}

.sec_price .sec_head img {
  height: 100%;
  width: auto;
}

.sec_price .item {
  width: 30%;
}
@media screen and (max-width: 540px) {
  .sec_price .item {
    width: 70%;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.sec_price .item_head {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec_price .item_head span {
  height: 2px;
  width: 5.5vw;
  background-color: #ed9710;
}

@media screen and (min-width: 1100px) {
  .sec_price .item_head {
    font-size: 1.5rem;
  }

  .sec_price .item_head span {
    width: 5.5vw;
  }
}
@media screen and (max-width: 540px) {
  .sec_price .item_head {
    font-size: 1.75rem;
  }

  .sec_price .item_head span {
    width: 4rem;
  }
}

.sec_price .price_area {
  padding: 2rem;
  font-size: 4vw;
  font-weight: bold;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0px 0px 8px 14px rgba(0, 0, 0, 0.01);
  transition: all 0.5s ease;
}
@media screen and (min-width: 1400px) {
  .sec_price .price_area {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 540px) {
  .sec_price .price_area {
    font-size: 2.75rem;
  }
}

.sec_price .price_area .img {
  height: 7vw;
}
@media screen and (min-width: 1400px) {
  .sec_price .price_area .img {
    height: 6rem;
  }
}
@media screen and (max-width: 540px) {
  .sec_price .price_area .img {
    height: 5rem;
  }
}
.sec_price .price_area .img img {
  width: auto;
  height: 100%;
}

.price_option {
  padding: 3rem 3rem;
  background-color: #ffe68e;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.price_option2 {
  display: block;
  position: relative;
}

@media screen and (max-width: 540px) {
  .price_option {
    padding: 2rem;
    padding-top: 3rem;
    margin: 4.5rem auto 0rem;
    display: block;
    margin-bottom: 4rem;
  }
}

.price_option .head {
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #333;
  border-radius: 2rem;
  color: #fff;
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 1.5rem;
  line-height: 1;
  text-align: center;
  min-width: 15rem;
}

.price_option p {
  width: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
}

.price_option2 p {
  width: 100%;
}

@media screen and (max-width: 540px) {
  .price_option p {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.5;
  }
}

.price_option p::before {
  content: "";
  display: inline-block;
  background-image: url(../img/top/icon_list.svg);
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.75rem;
}

/* ↓ セク｜cv_area ------------------------*/
.cv_area {
  padding: 4rem 0;
  background-image: url(../img/top/back_fv.jpg);
  background-size: cover;
  background-position: center;
}

/* ↓ SERVICE ｜ おすすめする理由 ------------------------*/
.service_osusume {
  position: relative;
  overflow-x: hidden;
}

.service_osusume .backblue1 {
  position: absolute;
  top: 5rem;
  left: -17vw;
  width: 42rem;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .service_osusume .backblue1 {
    position: absolute;
    top: 5rem;
    left: -12vw;
    width: 27rem;
    z-index: -1;
  }
}

.service_osusume .backblue2 {
  position: absolute;
  bottom: 8rem;
  right: -15vw;
  width: 42rem;
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .service_osusume .backblue2 {
    position: absolute;
    bottom: 15rem;
    right: -15vw;
    width: 27rem;
    z-index: -1;
  }
}

.service_osusume .head {
  max-width: 32rem;
  margin: auto;
  margin-bottom: 4.5rem;
}

.service_osusume .osusume_three {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

@media screen and (max-width: 540px) {
  .service_osusume .osusume_three {
    display: block;
    margin-bottom: 2rem;
  }
}

.service_osusume .osusume_three .item {
  width: 30%;
}

.service_osusume .osusume_three .item_center {
  margin: 0 5%;
}

@media screen and (max-width: 540px) {
  .service_osusume .osusume_three .item {
    width: 100%;
    margin-bottom: 5rem;
  }

  .service_osusume .osusume_three .item:last-child {
    margin-bottom: 2rem;
  }

  .service_osusume .osusume_three .item_center {
    margin: 0%;
    margin-bottom: 5rem;
  }
}

.service_osusume .osusume_three .image {
  position: relative;
  margin-bottom: 1.75rem;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
}

@media screen and (max-width: 540px) {
  .service_osusume .osusume_three .image {
    width: 80%;
    margin: auto;
    margin-bottom: 2.5rem;
  }
}

.service_osusume .osusume_three .image .icon {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 3.5rem;
}

.service_osusume .osusume_three .read {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service_osusume .osusume_three .sentence {
  line-height: 2;
}

@media screen and (max-width: 540px) {
  .service_osusume .osusume_three .read {
    width: 80%;
    margin: auto;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  .service_osusume .osusume_three .sentence {
    width: 80%;
    margin: auto;
  }
}

.service_osusume .convertion {
  margin-bottom: 3rem;
}

/* ↓ SERVICE ｜ sec_flow ------------------------*/

.sec_flow {
  background-color: #ffe68e;
  padding: 5rem;
}

@media screen and (max-width: 540px) {
  .sec_flow {
    background-color: #ffe68e;
    padding: 2rem;
  }
}

.service_senjo .head {
  max-width: 24rem;
  margin: auto;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 540px) {
  .service_senjo .head {
    max-width: 20rem;
    margin: auto;
    margin-bottom: 3.5rem;
  }
}

.service_senjo .senji_flow li {
  background-color: #fff;
  padding: 4rem;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
  position: relative;
}

.service_senjo .senji_flow li .inner {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li {
    display: block;
    padding: 0rem;
  }
  .service_senjo .senji_flow li .inner {
    display: block;
    padding: 2.5rem;
    padding-bottom: 1rem;
  }
}

.service_senjo .senji_flow li .icon {
  width: 5rem;
  position: absolute;
  top: -5rem;
  left: -5rem;
}

.service_senjo .textCenter {
  display: block;
  justify-content: center;
}

.service_senjo .btn_page img {
  margin: 1rem 0;
}

@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li .icon {
    width: 4rem;
  }

  .service_senjo .senji_flow .btn {
    display: inline-block;
    border-radius: 2rem;
    background-color: #00a1a6;
    text-align: center;
    padding: 1rem;
    position: relative;
  }
}

.service_senjo .senji_flow li .left {
  width: 55%;
  padding-right: 2rem;
}

@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li .left {
    width: 100%;
    padding-right: 0rem;
  }
}

.service_senjo .senji_flow li .left .head {
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 0.75rem;
  border-left: 6px solid #00a7cf;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.service_senjo .senji_flow li .left .sentence {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li .left .sentence {
    font-size: 1rem;
    line-height: 2;
  }
}

.service_senjo .senji_flow li .image {
  width: 45%;
}

.service_senjo .senji_flow li .image.image_inversion {
  transform: scaleX(-1);
}

@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li .image {
    width: 100%;
  }
}

.service_senjo .senji_flow .arrow {
  background-color: initial;
  box-shadow: initial;
  width: 6rem;
  margin: auto;
  padding: 0;
  margin-bottom: 4rem;
}

.service_senjo .senji_flow li small {
  line-height: 1.7;
  display: inline-block;
  margin-top: 1rem;
}

.flow_sec .head {
  max-width: 40rem;
  margin: auto;
  margin-bottom: 3.5rem;
}

.service_senjo .senji_flow li .icon {
  width: 5rem;
  position: absolute;
  top: -5rem;
  left: -5rem;
}
@media screen and (max-width: 540px) {
  .service_senjo .senji_flow li .icon {
    width: 4rem;
    top: -2rem;
    left: -2rem;
  }
}

.flow_sec .senji_flow li .left {
  width: 70%;
}

.flow_sec .senji_flow li .right {
  width: 30%;
}

@media screen and (max-width: 540px) {
  .flow_sec .senji_flow li .left {
    width: 100%;
  }

  .flow_sec .senji_flow li .right {
    width: 90%;
    margin: auto;
  }
}

.flow_sec .senji_flow li .left .head {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .flow_sec .senji_flow li .left .head {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

/* ↓ セク｜ニュース ------------------------*/
.news .sec_head {
  width: 20rem;
}

.top_news .secOuter-l {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 540px) {
  .news .sec_head {
    width: 16rem;
  }

  .top_news .secOuter-l {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}

.news .contents {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 540px) {
  .news .contents {
    padding: 2rem;
    padding-top: 1rem;
    margin-bottom: 0rem;
    margin-top: 1rem;
  }
}

.news .contents li {
  border-bottom: 1px solid #e1e1e1;
  transition: 0.3s ease;
  cursor: pointer;
}

.news .contents li:hover {
  background-color: #d0eaef;
}

.news .contents li:last-child {
  border-bottom: 0px;
}

.news .contents .row a {
  color: #333;
  display: block;
  width: 100%;
  padding: 2.3rem 2rem;
}

@media screen and (max-width: 540px) {
  .news .contents .row {
    padding: 1.5rem 0rem;
  }

  .news .contents .row a {
    color: #333;
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/*
.news .contents .row:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}
*/

.news .contents .row .day {
  color: #666666;
  margin-bottom: 0.5rem;
}

.news .contents .row .category {
  display: inline-block;
  padding: 0.2rem 1.5rem 0;
  font-size: 0.8rem;
  border-radius: 1.2rem;
  background-color: #a4a4a4;
  color: #fff;
  margin-left: 1rem;
}

.news .contents .row .news {
  background-color: #e7db21;
  color: #333;
}

.news .contents .row .campaign {
  background-color: #f28e1e;
}

.news .contents .row .title {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ↓ セク｜sns ------------------------*/
.top_sns .sec_head {
  margin-bottom: 3rem;
}

/* ↓ CONTACT ｜　問い合わせフォーム ------------------------*/
.page_all {
  position: relative;
}

.page_all .water {
  position: absolute;
  right: 0;
  width: 50vw;
  z-index: -1;
  max-width: 550px;
}

.page_all .pagehead img {
  height: 100%;
  width: auto;
  margin: auto;
}

.sec_head_s {
  font-size: 1.7rem;
  padding-left: 1rem;
  border-left: 6px solid #00a7cf;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.telbtn,
.mailbtn {
  width: 80%;
  margin: auto;
  display: block;
  text-align: center;
}

@media screen and (min-width: 540px) {
  .telbtn {
    pointer-events: none;
  }
  .telbtn img:hover {
    opacity: 1;
  }

  .mailbtn {
    pointer-events: all;
  }
  .mailbtn img:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 540px) {
  .telbtn {
    width: 100%;
  }
}

.telarea_inner {
  background-color: #fff;
  padding: 3rem 2rem;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 10, 0.02);
  border-radius: 1rem;
}
@media screen and (max-width: 540px) {
  .telarea_inner {
    background-color: #fff;
    padding: 3rem 2rem 2rem;
  }
}

::placeholder {
  line-height: 1.7;
  color: #c6c6c6;
}

.mw_wp_form .futon_number_area .horizontal-item {
  display: inline-block;
  position: relative;
}

.futon_number_area {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.futon_number_area p {
  display: block;
}

.form_item.number_area {
  margin-bottom: 26vw;
  position: relative;
}

.price_note_contact {
  position: absolute;
  bottom: -20vw;
  right: 0;
  font-size: 0.8rem;
}

.mw_wp_form_confirm .price_note_contact {
  display: none;
}

@media screen and (max-width: 540px) {
  .form_item.number_area {
    margin-bottom: 15vw;
  }

  .price_note_contact {
    position: relative;
    top: -2rem;
  }
}

.mw_wp_form_confirm .form_item.number_area {
  margin-bottom: 7rem;
}
@media screen and (max-width: 540px) {
  .mw_wp_form_confirm .form_item.number_area {
    margin-bottom: 5rem;
  }
}
.mw_wp_form .number_area .horizontal-item {
  display: block;
  width: 30%;
}

label[for="futon_number-1"],
label[for="futon_number-2"],
label[for="futon_number-3"] {
  position: relative;
  width: 100%;
}

.mw_wp_form .number_area .horizontal-item label[for="futon_number-1"]::after {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  padding: 1.25rem;
  width: 100%;
  max-height: 15rem;
  top: 3vw;
  left: 0;
  height: 17vw;
  background-color: #fff;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 3.5vw;
  background-size: 8.5vw;
  background-position: 50% 25%;
  background-repeat: no-repeat;
}

.mw_wp_form .number_area .horizontal-item label[for="futon_number-2"]:after {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  padding: 1.25rem;
  width: 100%;
  max-height: 15rem;
  top: 3vw;
  left: 0;
  height: 17vw;
  background-color: #fff;
  content: "¥0,000";
  border-radius: 1rem;
  font-weight: bold;
  font-size: 3.5vw;
  background-image: url(../img/top/img_futon2.svg);
  background-size: 14vw;
  background-position: 50% 25%;
  background-repeat: no-repeat;
}

.mw_wp_form .number_area .horizontal-item label[for="futon_number-3"]:after {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  padding: 1.25rem;
  width: 100%;
  max-height: 15rem;
  top: 3vw;
  left: 0;
  height: 17vw;
  background-color: #fff;
  content: "¥0,000";
  border-radius: 1rem;
  font-weight: bold;
  font-size: 3.5vw;
  background-image: url(../img/top/img_futon3.svg);
  background-size: 14vw;
  background-position: 50% 25%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1400px) {
  .mw_wp_form .number_area .horizontal-item label[for="futon_number-1"]::after {
    font-size: 3rem;
    background-size: 7rem;
  }

  .mw_wp_form .number_area .horizontal-item label[for="futon_number-2"]::after {
    font-size: 3rem;
    background-size: 12rem;
  }

  .mw_wp_form .number_area .horizontal-item label[for="futon_number-3"]::after {
    font-size: 3rem;
    background-size: 12rem;
  }
  .form_item.number_area {
    margin-bottom: 25rem;
  }
}

@media screen and (max-width: 540px) {
  .mw_wp_form .number_area .horizontal-item label[for="futon_number-1"]::after {
    padding: 1.25rem;
    width: 100%;
    top: 10vw;
    left: 0;
    height: 13rem;
    background-size: 6rem;
    font-size: 3rem;
  }

  .mw_wp_form .number_area .horizontal-item label[for="futon_number-2"]::after {
    padding: 1.25rem;
    width: 100%;
    top: 10vw;
    left: 0;
    height: 13rem;
    background-size: 10rem;
    font-size: 3rem;
  }

  .mw_wp_form .number_area .horizontal-item label[for="futon_number-3"]::after {
    padding: 1.25rem;
    width: 100%;
    top: 10vw;
    left: 0;
    height: 13rem;
    background-size: 10rem;
    font-size: 3rem;
  }
  .mw_wp_form .number_area .horizontal-item {
    width: 100%;
    margin-bottom: 17rem !important;
  }
}

.mw_wp_form .number_area p {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 540px) {
  .mw_wp_form .number_area p {
    display: block;
  }
}
.form_disc {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.mw_wp_form_confirm .form_disc {
  display: none;
}

.form_item {
  margin-bottom: 7rem;
}
@media screen and (max-width: 540px) {
  .form_item {
    margin-bottom: 5rem;
  }
}

.form_item_last {
  margin-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .form_item_last {
    margin-bottom: 2rem;
  }
}

.sec_head_s small {
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 540px) {
  .sec_head_s {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-left: 0rem;
  }
}

.telarea {
  margin-bottom: 6rem;
}

@media screen and (max-width: 540px) {
  .telarea {
    margin-bottom: 4rem;
  }

  .page_all .pagehead {
    height: 8.5rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

.contact_wrap .secOuter-l {
  padding-bottom: 2rem;
}

.contact_wrap textarea {
  padding: 1rem;
  border: solid 2px #b1b1b1;
  border-radius: 0.5rem;
  width: 100%;
}

@media screen and (max-width: 540px) {
  .contact_wrap .secOuter-l {
    padding-bottom: 0rem;
  }
}

.page_all .pagehead {
  height: 7rem;
  margin: 5rem auto 2rem;
  position: relative;
  display: block;
}

.page_all .pagehead img {
  height: 100%;
  width: auto;
  margin: auto;
  margin-bottom: 1.5rem;
}

.contact_pagehead {
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .page_all .pagehead {
    height: 4.5rem;
    max-width: 100%;
    margin-bottom: 1rem;
    margin: 8rem auto 3rem;
  }
}

.page_all {
  overflow-x: hidden;
}

.contact_discription {
  display: block;
  line-height: 2;
  margin-bottom: 5rem;
}
@media screen and (max-width: 540px) {
  .contact_discription {
    margin-bottom: 3rem;
  }
}

.confirm_discription {
  line-height: 2;
  margin-bottom: 3rem;
}

.sec_head_tel {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.sec_head_mail {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.sec_head_tel small {
  font-size: 1.3rem;
  font-weight: 500;
}

@media screen and (max-width: 540px) {
  .sec_head_tel {
    font-size: 1.2rem;
  }
  .sec_head_tel small {
    font-size: 1rem;
    font-weight: 500;
  }

  .sec_head_mail {
    font-size: 1rem;
  }
}

.contact-table {
  max-width: 720px;
}

.contact-table .row {
  display: flex;
}

.contact-table .row:last-child {
  border-bottom: none;
}

.contact-table .left {
  width: 25%;
  padding: 2.95rem;
  padding-left: 0;
  font-weight: 500;
}

.mw_wp_form_confirm .contact-table .left {
  padding: 1.95rem;
}

.contact-table .right {
  padding: 1.95rem 0 0;
  width: 75%;
}

.contact-table .right input[type="text"],
.contact-table .right input[type="email"],
.contact-table .right input[type="textarea"] {
  padding: 0.9rem;
  border: solid 2px #b1b1b1;
  border-radius: 0.5rem;
  width: 100%;
  line-height: 1;
}

.contact-table .right input.tel {
  padding: 0.9rem;
  border: solid 2px #b1b1b1;
  border-radius: 0.5rem;
  width: 20%;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0.25rem !important;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  white-space: nowrap;
  margin-left: 0 !important;
}

.mw_wp_form .number_area .horizontal-item + .horizontal-item {
  margin-right: 0 !important;
}

@media screen and (max-width: 540px) {
  .contact-table .right input.tel {
    width: 29%;
  }
}

.contact-table .right textarea {
  padding: 0.75rem;
  border: solid 1px #808080;
  border-radius: 0.3rem;
  width: 100%;
}

.mw_wp_form .horizontal-item {
  margin: initial;
  margin-right: 1.5rem !important;
}

.mw_wp_form .horizontal-item.number_area {
  margin: initial;
  margin-right: 0rem;
}

@media screen and (max-width: 540px) {
  .mwform-radio-field label {
    margin-bottom: 0.5rem !important;
    white-space: nowrap !important;
  }
}

@media screen and (max-width: 540px) {
  .contact-table .left {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .mw_wp_form_confirm .contact-table .left {
    font-size: 0.9rem;
    padding: 1rem;
    line-height: 1.7;
  }

  .contact-table .right {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

.btn_send {
  border-radius: 2rem;
  max-width: 27rem;
  text-align: center;
  margin: auto;
  transition: 0.3s ease;
  cursor: pointer;
  margin-bottom: 8rem;
}

.btn_send input {
  font-weight: bold;
  border-radius: 2rem;
  width: 100%;
  padding: 2rem 0;
  width: 25rem;
  color: #fff;
  transition: 0.3s ease;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #ed9710;
  text-decoration: initial !important;
  cursor: pointer;
  border: initial;
}

.btn_send:hover {
  color: #fff;
  transition: 0.3s ease;
  transform: scale(1.05);
}

.mw_wp_form_confirm .privacy-policy {
  display: none;
}

.contact-privacy {
  text-align: center;
  font-size: 0.9rem;
}

.contact-privacy a {
  display: inline-block;
  text-align: center;
  color: #e9a20a;
  border-bottom: 1px solid;
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
}

.contact-privacy a:hover {
  opacity: 1;
}

.validation {
  color: red;
}

.privacy-policy {
  height: 350px;
  padding: 2rem 4rem;
  border: 1px solid #a1a1a1;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .privacy-policy {
    height: 350px;
    padding: 1rem 2rem;
  }
}

.privacy-policy__head {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.privacy-policy__head small {
  font-size: 0.9rem;
  font-weight: 400;
}
@media screen and (max-width: 540px) {
  .privacy-policy__head small {
    font-size: 0.75rem;
    font-weight: 400;
  }
}
.privacy-policy__detail {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 2;
}
.form_option p {
  display: flex;
  flex-wrap: wrap;
}
.form_option .mwform-checkbox-field {
  width: 40%;
  display: inline-block;
}
@media screen and (max-width: 540px) {
  .form_option .mwform-checkbox-field {
    width: 100%;
  }
}
/* ↓ footer ------------------------*/
.footer_inner {
  padding: 6rem 0;
  padding-bottom: 2rem;
  background-color: #368cb7;
}

@media screen and (max-width: 540px) {
  .footer_inner {
    padding: 3rem 0 2rem;
  }
}

.footer_bannere {
  margin-bottom: 4rem;
}

.footer_logo {
  max-width: 25rem;
  margin: auto;
  margin-bottom: 2.5rem;
  margin-top: 6rem;
}

@media screen and (max-width: 540px) {
  .footer_logo {
    max-width: 18rem;
    margin: auto;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
  }
}

.footer_contact {
  margin-bottom: 3rem;
}

.footer_contact a {
  height: 2rem;
  text-align: center;
  display: block;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 540px) {
  .footer_contact a {
    height: 1.7rem;
    text-align: center;
    display: block;
    margin-bottom: 1.25rem;
  }
}

.footer_contact a img {
  height: 100%;
  width: auto;
}

.footer_info {
  display: flex;
  justify-content: center;
  margin: 4rem auto;
}

@media screen and (max-width: 540px) {
  .footer_info {
    display: block;
    width: 60%;
    margin: auto;
    margin-bottom: 4rem;
  }
}

.footer_info div {
  color: #fff;
}

@media screen and (max-width: 540px) {
  .footer_info div:first-child {
    margin-bottom: 1.5rem;
  }
}

.footer_info div:first-child {
  margin-right: 5%;
}

.footer_info span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: bold;
  padding-left: 0.5rem;
  border-left: 5px solid;
  margin-bottom: 0.7rem;
}

.copyright {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
