﻿@charset "utf-8";

/*　カスタムプロパティ
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
:root {
  --color-text: #333;
  --color-border: #e6e5e3;
  /* ボタン */
  --color-btn: #fafafa;
  --color-btn-hover: #222;
  --color-btn-border: #222;
  --color-btn-text: #222;
  --color-btn-text-hover: #fafafa;
  /* リンク */
  --color-link: #999;
  --color-link-hover: #666;
  /* メインカラー em1 */
  --color-main: #56a3c8;
  --color-main-dark: #225871;
  --color-main-light: #e9faff;
  /* サブカラー em2 */
  --color-sub: #ee8718;
  --color-sub-dark: #894803;
  --color-sub-light: #f6ddc3;
  /* 重要 */
  --color-alert: #fff98d;
  /* マーカー */
  --color-marker: #fff799;
  /* ベースカラー */
  --color-base-red: #b30f0f;
  --color-base-red-light: #eb8383;
  --color-base-blue: #007bff;
  --color-base-blue-light: #a9d2ff;
  --color-base-green: #28a745;
  --color-base-green-light: #a9e1b6;
  --color-base-yellow: #ffc107;
  --color-base-yellow-light: #ffedb7;
  --color-base-gray: #666;
  --color-base-gray-light: #c7c7c7;
  --color-base-purple: #6f42c1;
  --color-base-purple-light: #b3a8c8;
  --color-base-pink: #e83e8c;
  --color-base-pink-light: #f1d2e0;
  /* フォント */
  --font-min: "Noto Serif JP", serif;
  --font-min-weight: 400;
  --font-min-style: normal;
  --font-en: "avenir-lt-pro", sans-serif;
  --font-en-weight: 300;
  --font-en-style: normal;
  /* パディング */
  --s-inner-padding: 8%;
}

/*　body / html
----------------------------------------------- */
body {
  position: relative;
  overflow-x: hidden;
  word-wrap: break-word;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}
html {
  overflow-y: scroll;
}
p {
  margin-bottom: 1.5em;
  line-height: 2;
}
.f-min {
  font-family: var(--font-min);
  font-weight: var(--font-min-weight);
  font-style: var(--font-min-style);
}
.f-en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-style: var(--font-en-style);
}
/* main visual
----------------------------------------------- */
.mvHead {
  background: #56a3c8;
  color: #fff;
  padding: 0.5em 0.8em;
  text-align: center;
}
.mvHead p {
  margin-bottom: 0;
  font-size: 0.9em;
  line-height: 1.3;
}
.mvHead p span.em {
  color: var(--color-alert);
}
.mv {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mvHead {
    padding: 1em 0.8em;
  }
  .mvHead p {
    font-size: 1.1em;
  }
}
/* footer
----------------------------------------------- */
footer {
  padding: 1em 5em 1em;
  background: #eee;
  text-align: center;
}
footer .copy {
  margin-bottom: 0em;
}
/* contents
----------------------------------------------- */
:root {
  --s-inner-top: 2em;
  --s-inner-bottom: 2em;
  --s-inner-padding-sp: 5%;
  --s-inner-padding-pc: 50px;
}
main {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--s-inner-padding-sp);
  padding-right: var(--s-inner-padding-sp);
}
.section.-MT {
  margin-top: var(--s-inner-top);
}
.section.-MB {
  margin-bottom: var(--s-inner-bottom);
}
.section.-PT {
  padding-top: var(--s-inner-top);
}
.section.-PB {
  padding-bottom: var(--s-inner-bottom);
}
.bg_light {
  background: var(--color-main-light);
}
.bg_dark {
  background: var(--color-main-dark);
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: var(--s-inner-padding-pc);
    padding-right: var(--s-inner-padding-pc);
  }
}
/* clearfix
----------------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.clear {
  clear: both;
}
/* subhead
----------------------------------------------- */
:root {
  --s-subhead-margin: 3em 0 2em;
  --s-subhead-padding: 1.8em 1em 2em;
}
.subhead01 .title,
.subhead02 .title,
.subhead03 .title,
.subhead04 .title {
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-main-dark);
}
.subhead03 .title,
.subhead04 .title {
  color: #fff;
}
.subhead01 {
  margin: var(--s-subhead-margin);
  background: url(../images/contents/title_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: var(--s-subhead-padding);
}
.subhead02 {
  margin: var(--s-subhead-margin);
  padding: 0.5em 0;
  background-color: var(--color-main-light);
  /*background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.5) 10px,
    rgba(255, 255, 255, 0.5) 20px
  );*/
}
.subhead02 .title {
  padding: 1.2em 1em;
  border: 2px solid var(--color-main);
  border-width: 2px 0 2px 0;
}
.subhead03 {
  margin: var(--s-subhead-margin);
  padding: var(--s-subhead-padding);
  background: var(--color-main);
}
.subhead04 {
  position: relative;
  margin: var(--s-subhead-margin);
  padding: var(--s-subhead-padding);
  background: var(--color-main);
}
.subhead04:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--color-main);
}
@media screen and (min-width: 720px) {
  :root {
    --s-subhead-margin: 5em 0 3em;
    --s-subhead-padding: 4em 3em 4.2em;
  }
  .subhead01 .title,
  .subhead02 .title,
  .subhead03 .title,
  .subhead04 .title {
    font-size: 1.8em;
  }
  .subhead02 .title {
    padding: 2em 2em;
  }
}
/* heading
----------------------------------------------- */
.heading01 {
  color: #175379;
  margin: 1.5em 0;
}
.heading01 strong {
  padding: 0 2px 2px 2px;
  background: linear-gradient(transparent 70%, #fefc5f 30%);
  font-weight: 700;
}
.heading02 {
  position: relative;
  margin: 1em 0;
  padding: 1.5em 3% 0em;
}
.heading02::before,
.heading02::after {
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
}
.heading02::before {
  border-top: solid 2px #15c5be;
  border-left: solid 2px #15c5be;
  top: 0;
  left: 0;
}
.heading02::after {
  border-bottom: solid 2px #15c5be;
  border-right: solid 2px #15c5be;
  bottom: 0;
  right: 0;
}
.heading03 {
  font-size: 1.1em;
  font-weight: 400;
  color: #fff;
  margin: 2em 0 1.5em;
  padding: 1.1em 0.4em 0;
  background: #175379;
  border: 3px solid #175379;
  position: relative;
}
.heading03 strong {
  display: block;
  font-size: 0.8em;
  margin-bottom: 5px;
  opacity: 0.7;
}
.heading03::before,
.heading03::after {
  content: "";
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  left: 30px;
}
.heading03:before {
  border-color: transparent;
  border-top-color: #175379;
  border-right-color: #175379;
  border-width: 10px;
  top: 100%;
  left: 26px;
}
.heading03:after {
  border-color: transparent;
  border-top-color: #175379;
  border-right-color: #175379;
  border-width: 6.5px;
  top: 99%;
}
@media screen and (min-width: 720px) {
  .heading01 {
    margin: 2em 0;
  }
  .heading02::before,
  .heading02::after {
    height: 80px;
    width: 80px;
  }
}
/* link
----------------------------------------------- */
a {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
  cursor: pointer;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
.link01 {
  background: url(images/common/icon_arrow01.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
}
.link02 {
  background: url(images/common/icon_arrow02.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
}
.link03 {
  background: url(images/common/icon_arrow04.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
}
.acswitch {
  margin-bottom: 2em;
}
.faqlist li {
  margin-bottom: 0.4em;
}
.faqlist li a {
  background: url(images/common/icon_arrow01.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
  color: var(--color-text);
  text-decoration: none;
}
.faqlist li a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
/* Form (Contactform7)
----------------------------------------------- */
input,
select,
textarea {
  margin: 0;
  padding: 5px;
  outline: none;
  border: solid 1px var(--color-border);
  border-radius: 0;
  background: #fff;
  color: var(--color-text);
  font-size: 1em;
  font: inherit;
}
textarea {
  resize: vertical;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100% !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--color-btn-hover);
}
input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}
input[type="submit"] {
  padding: 10px 20px;
  min-width: 140px;
  border: solid 1px var(--color-btn);
  background: var(--color-btn);
  color: var(--color-btn-text);
  text-align: center;
  transition: all 0.3s ease;
}
input[type="submit"]:hover {
  background: var(--color-btn-text);
  color: var(--color-btn);
}
.formTable {
  width: 100%;
  margin-bottom: 2em;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.formTable th,
.formTable td {
  padding: 15px 20px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  text-align: left;
}
.formTable th p,
.formTable td p {
  margin: 0;
}
.formTable th {
  width: 320px;
  background: #f7f7f7;
  color: #282828;
}
.formTable th span {
  font-size: 12px;
}
.formTable th span.required {
  margin-left: 8px;
  font-size: 10px;
  color: #dd0000;
}
.formTable td {
  width: calc(100% - 270px);
}
.formTable .tdspan.fontsm {
  display: block;
  margin-top: 5px;
  line-height: 1.7;
}

.wpcf7-list-item.first {
  margin-left: 0;
}
.wpcf7-spinner {
  display: none !important;
}
.searchform {
  max-width: 700px;
  margin-top: 2em;
}
.search-form input[type="search"] {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .formTable th,
  .formTable td {
    display: block;
    width: 100% !important;
    padding: 0.85em 5%;
  }
}
@media screen and (min-width: 992px) {
  input[type="text"],
  textarea {
    width: 90%;
  }
  form table th,
  form table td {
    font-size: 16px;
  }
}
/* search-form */
.searchform div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#searchsubmit {
  margin: 10px auto 0;
}
/* typography
----------------------------------------------- */
/* image-style
----------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
img.border {
  border: 1px solid #ddd;
  padding: 4px;
}
img.frame {
  outline: 7px solid rgb(255 255 255 / 40%);
  outline-offset: -7px;
}
img.round {
  border-radius: 50%;
}
img.aligncenter,
img.center {
  display: block;
  margin: auto;
}
img.alignright {
  float: right;
  margin: 0 0 10px 20px;
  max-width: 50%;
}
img.alignleft {
  float: left;
  margin: 0 20px 10px 0;
  max-width: 50%;
}
/* img_switch
----------------------------------------------- */
.switch {
  visibility: hidden;
}
/* box-style
----------------------------------------------- */
[class^="box0"],
[class^="boxcolor"] {
  clear: both;
  margin: 2em 0;
  padding: 1.5em 1em 0.5em;
  background-color: #fff;
}
[class^="box0"].-round {
  border-radius: 10px;
}
.box01 {
  border: 3px double #ddd;
}
.box02 {
  border: 4px solid #eee;
}
.box02.c-main {
  border-color: var(--color-main);
}
.box02.c-sub {
  border-color: var(--color-sub-light);
}
.box03 {
  box-shadow: 0px 0px 8px #ddd;
  -ms-box-shadow: 0px 0px 8px #ddd;
  -moz-box-shadow: 0px 0px 8px #ddd;
  -webkit-box-shadow: 0px 0px 8px #ddd;
  border: 1px solid #fff;
}
.box04 {
  border: 1px solid #ddd;
  box-shadow: 7px 7px 0px #ddd;
  -ms-box-shadow: 7px 7px 0px #ddd;
  -moz-box-shadow: 7px 7px 0px #ddd;
  -webkit-box-shadow: 7px 7px 0px #ddd;
}
.box05 {
  border: 1px solid #f7f7f7;
  background: #f7f7f7;
}
.box06 {
  background: url("../images/common/box-note.png") repeat center center;
  background-size: 128px;
}
.t-box01 {
  clear: both;
  margin: 2em 0;
}
.t-box01 .title {
  margin: 0;
  padding: 10px 5px 10px 14px;
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
  background: #666;
  border: 2px solid #666;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.t-box01 .t-box01In {
  padding: 1em 15px 0.1em;
  border: 2px solid #666;
  border-radius: 0px 0px 4px 4px;
}
[class^="boxcolor"] {
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
}
[class^="boxcolor"] h4 {
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
}
[class^="boxcolor"].bg-none {
  background-color: #fff;
}
.boxcolor-red {
  background-color: var(--color-base-red-light);
  border-color: var(--color-base-red);
}
.boxcolor-blue {
  background-color: var(--color-base-blue-light);
  border-color: var(--color-base-blue);
}
.boxcolor-green {
  background-color: var(--color-base-green-light);
  border-color: var(--color-base-green);
}
.boxcolor-yellow {
  background-color: var(--color-base-yellow-light);
  border-color: var(--color-base-yellow);
}
.boxcolor-gray {
  background-color: var(--color-base-gray-light);
  border-color: var(--color-base-gray);
}
.boxcolor-purple {
  background-color: var(--color-base-purple-light);
  border-color: var(--color-base-purple);
}
.boxcolor-pink {
  background-color: var(--color-base-pink-light);
  border-color: var(--color-base-pink);
}
@media screen and (min-width: 768px) {
  [class^="box0"],
  [class^="boxcolor"] {
    clear: both;
    margin: 3em 0;
    padding: 2em 2em 0.5em;
  }
  .t-box01 .title {
    padding: 15px 20px;
  }
  .t-box01 .t-box01In {
    padding: 20px 20px 5px;
  }
}
/* list style
----------------------------------------------- */
.list01,
.list02,
.list03,
.list04 {
  margin: 1em 0;
}
.list01 li,
.list02 li,
.list03 li,
.list04 li {
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.2em;
  background-repeat: no-repeat;
  font-size: 1.1em;
}
.list01 li {
  background-image: url(../images/common/circle01.png);
  background-size: 0.4em;
  background-position: 0.2em 0.8em;
}
.list02 li {
  background-image: url(../images/common/circle02.png);
  background-size: 0.6em;
  background-position: 0em 0.7em;
}
.list03 li {
  background-image: url(../images/common/diamond01.png);
  background-size: 0.6em;
  background-position: 0em 0.7em;
}
.list04 li {
  background-image: url(../images/common/diamond02.png);
  background-size: 0.6em;
  background-position: 0em 0.7em;
}
/* チェックリスト */
.checklist01,
.checklist02,
.checklist03 {
  margin: 1em 0;
  border-top: 1px dashed #ccc;
}
.checklist01 li,
.checklist02 li,
.checklist03 li {
  padding: 0.8em 0 0.8em 1.6em;
  border-bottom: 1px dashed #ccc;
  background-repeat: no-repeat;
  background-position: 0 1.1em;
  background-size: 1.2em;
}
.checklist01 li {
  background-image: url(../images/common/check01.png);
}
.checklist02 li {
  background-image: url(../images/common/check02.png);
}
.checklist03 li {
  background-image: url(../images/common/check03.png);
}
/* チェックリスト TYPE-2 一行おきに背景グレー */
.checklist01.type2,
.checklist02.type2,
.checklist03.type2 {
  border-top: none;
}
.checklist01.type2 li,
.checklist02.type2 li,
.checklist03.type2 li {
  border-bottom: none;
  padding-left: 2.5em;
  padding-right: 0.4em;
  background-position: 0.7em 1.2em;
}
.checklist01.type2 li:nth-child(2n),
.checklist02.type2 li:nth-child(2n),
.checklist03.type2 li:nth-child(2n) {
  background-color: #f5f5f5;
}
/* チェックリスト is-large ちょっと大きく */
.checklist01.is-large li,
.checklist02.is-large li,
.checklist03.is-large li {
  font-size: 1.15em;
}
/* dl-style
----------------------------------------------- */
.dl01 {
  margin-bottom: 2em;
}
.dl01 dt {
  margin: 1.5em 0 1em;
  padding: 0 0 0.8em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.dl01 dt span {
  display: block;
}
.dl01 dd {
  margin: 0 0 1.5em;
}
.dl02 {
  margin-bottom: 2em;
}
.dl02 dt {
  margin: 20px 0 10px;
  padding: 0 0 5px 20px;
  font-size: 1.1em;
  font-weight: 500;
  background: url(images/common/icon_square02.png) no-repeat 0 9px;
  background-size: 15px;
  border-bottom: 1px solid #bababa;
}
.dl02 dd {
  margin: 0 0 25px;
}
.faq {
  margin-bottom: 40px;
}
.faq dt {
  margin: 2em 0 1em;
  padding: 0 0 0.8em 32px;
  background: url(images/common/icon_faq_q.png) no-repeat 0px 5px;
  background-size: 24px;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.faq dd {
  margin: 0 0 30px;
  padding: 0 0 2px 32px;
  background: url(images/common/icon_faq_a.png) no-repeat 0 3px;
  background-size: 24px;
}
/* table-style
----------------------------------------------- */
table.table01 {
  width: 100%;
  margin: 0 0 2em;
}
table.table01 th,
table.table01 td {
  font-weight: normal;
  padding: 14px 4% 14px;
  text-align: left;
}
table.table01 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table01 th,
table.table01 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table01 th {
  background: #f6f6f6;
}
table.table01.center th,
table.table01.center td {
  text-align: center;
  vertical-align: middle;
}
table.table02 {
  width: 100%;
  margin: 0 0 2em;
  border-collapse: separate;
}
table.table02 th,
table.table02 td {
  font-weight: normal;
  text-align: left;
}
table.table02 th {
  padding: 14px 18px;
  background: #f6f6f6;
}
table.table02 td {
  padding: 14px 18px 20px;
}
@media screen and (max-width: 719px) {
  table.table01 th,
  table.table01 td {
    display: block;
    width: 100%;
  }
  table.table02 th,
  table.table02 td {
    display: block;
    width: 100%;
  }
}
/* text-style
----------------------------------------------- */
.txt-right {
  text-align: right !important;
}
.txt-left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.color-red {
  color: var(--color-base-red);
}
.font12 {
  font-size: 12px !important;
}
.font10 {
  font-size: 10px !important;
}
.lh16 {
  line-height: 1.6 !important;
}
.lh18 {
  line-height: 1.8 !important ;
}
.inlineb {
  display: inline-block;
}
@media screen and (min-width: 720px) {
  .pc-center {
    text-align: center;
  }
}
/* Emphasis
----------------------------------------------------------- */
.em1,
.em1 a {
  color: var(--color-main);
  font-weight: 700;
}
.em2,
.em2 a {
  color: var(--color-sub);
  font-weight: 700;
}
.em3 {
  font-weight: 700;
}
.em4l {
  font-size: 120%;
}
.em4xl {
  font-size: 140%;
}
.em5 {
  text-decoration: underline;
}
.em6 {
  padding: 0 2px 2px 2px;
  background: var(--color-marker);
  font-weight: 700;
}
.em7 {
  padding: 0 2px 2px 2px;
  background: linear-gradient(transparent 70%, var(--color-marker) 30%);
  font-weight: 700;
}
@media screen and (min-width: 720px) {
  .em4l {
    font-size: 150%;
  }
}
/* layout-style
----------------------------------------------- */
[class^="layout"] {
  margin-bottom: 1.5em;
  overflow: hidden;
}
[class^="layout"] img {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 720px) {
  [class^="layout"] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .layout2 .itemleft,
  .layout2 .itemright {
    width: calc((100% - 20px) / 2);
  }
  .layout37 .itemleft {
    float: left;
    width: 30%;
  }
  .layout37 .itemright {
    float: right;
    width: 68%;
  }
  .layout73 .itemleft {
    float: left;
    width: 70%;
  }
  .layout73 .itemright {
    float: right;
    width: 30%;
  }
  .layout46 .itemleft {
    float: left;
    width: 40%;
  }
  .layout46 .itemright {
    float: right;
    width: 58%;
  }
  .layout64 {
    flex-direction: row-reverse;
  }
  .layout64 .itemleft {
    width: calc(55%);
  }
  .layout64 .itemright {
    width: calc(45% - 20px);
  }
}
/* submit-style
----------------------------------------------- */
.submitBtn {
  margin: 2.5em 0;
  text-align: center;
  position: relative;
}
.submitBtn a {
  transition: all 0.5s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.submitBtn a:hover {
  opacity: 0.6;
}
/* 固定ボタン */
.fixedBtn {
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  text-align: center;
  background-color: #fff;
}
.fixedBtn a {
  display: block;
  width: 100vw;
  text-align: center;
  background-color: #06c755;
}
.fixedBtn a:hover {
  opacity: 0.6;
}
.fixedBtn img {
  width: 100%;
  max-width: 700px;
}
/* キラっと光るボタン */
.reflection {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.reflection:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* hr
----------------------------------------------- */
hr {
  clear: both;
  width: 80%;
  height: 1px;
  margin: 2em auto;
  border: none;
  background: var(--color-border);
}
hr.hr01 {
  width: 100%;
  height: 1px;
  border-top: dotted 1px #ddd;
  background: none;
}
hr.hr02 {
  height: 6px;
  background: #fff
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 5px,
      #ddd 5px,
      #ddd 7px
    );
}
hr.hr03 {
  width: 80%;
  height: 10px;
  background: url(images/common/hr03.png) repeat-x center center;
  background-size: auto 10px;
}
/* youtube-wrap, map-wrap
----------------------------------------------- */
.youtube-wrap,
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 15px;
  text-align: center;
}
.youtube-wrap iframe,
.map-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* flowbox
----------------------------------------------- */
.flowbox {
  clear: both;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 15px;
  background: url(images/common/u_arrow01.png) no-repeat 50% bottom;
}
.flowbox.last {
  background: none;
}
.flowbox .itemleft {
  text-align: center;
}
/* flowbox01 （左）写真（右）テキスト */
.flowbox01 {
  padding-bottom: 2em;
  background: url(images/common/u_arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox01.last {
  background: none;
}
.flowbox01 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox01 .itemright {
  margin-bottom: 1.5em;
}
/* flowbox02 （左）テキスト（右）写真 */
.flowbox02 {
  padding-bottom: 2em;
  background: url(images/common/u_arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox02.last {
  background: none;
}
.flowbox02 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox02 .itemright {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .flowbox01 {
    display: flex;
    align-items: center;
    gap: 2em;
    padding-bottom: 3em;
    background-position: left 18% bottom 1.1em;
  }
  .flowbox01 .itemleft {
    margin-bottom: 0;
    width: 40%;
  }
  .flowbox01 .itemright {
    margin-bottom: 0;
    width: calc(60% - 2em);
  }
}
/* photolist
----------------------------------------------- */
.photolist {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.photolist li {
  width: calc((100% - 1em) / 2);
}
.photolist li figure figcaption {
  margin-top: 0.5em;
  font-size: 90%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .photolist {
    gap: 2em;
  }
  .photolist li {
    width: calc((100% - 2em) / 2);
  }
}
/* testimonials
----------------------------------------------- */
.testimonial {
  margin: 0 0 1.5em;
  padding: 1em 1em 0.5em;
  border: 3px solid #e6e6e6;
  background: url(../images/common/testimonial_bg.png) no-repeat 98% 10px
    #ffffff;
  background-size: 120px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.testimonial__title {
  margin: 0 0 1.5em;
  padding: 0 0 0.7em 0;
  border: none;
  border-bottom: 2px dotted var(--color-border);
  background: none;
  color: var(--color-main-dark);
  font-size: 1.1em;
  line-height: 1.6;
  font-weight: 600;
}
.testimonial__img {
  display: block;
  margin: 0 auto 20px;
  float: none;
  max-width: 280px;
  text-align: center;
}
.testimonial__name {
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .testimonial {
    margin: 3em 0;
    padding: 2em 2em 0.5em;
    background-size: 130px;
  }
  .testimonial__title {
    font-size: 1.3em;
  }
}
/* 768px〜 メディアクエリ開始 */
@media screen and (min-width: 768px) {
  .dl01 dt {
    margin-top: 2em;
    font-size: 1.2em;
  }
  .dl01 dd {
    margin-bottom: 2em;
  }
  .faq dt {
    padding-left: 38px;
    background-position: left 5px;
    background-size: 28px;
  }
  .faq dd {
    padding-left: 38px;
    background-position: left 5px;
    background-size: 28px;
  }
  .searchform div {
    justify-content: space-between;
  }
  .searchform input[type="text"] {
    width: calc(100% - 150px) !important;
    height: 54px;
    padding-left: 10px;
  }
  #searchsubmit {
    width: 120px;
    min-width: none;
    margin: 0;
  }
  .pc_none {
    display: none;
  }
  .submitBtn {
    margin: 3em 0 !important;
  }
}

/* other-style
----------------------------------------------- */
.MT0 {
  margin-top: 0px !important;
}
.MT10 {
  margin-top: 10px !important;
}
.MT20 {
  margin-top: 20px !important;
}
.MT30 {
  margin-top: 30px !important;
}
.MT40 {
  margin-top: 40px !important;
}
.MT50 {
  margin-top: 50px !important;
}
.MB0 {
  margin-bottom: 0px !important;
}
.MB5 {
  margin-bottom: 5px !important;
}
.MB10 {
  margin-bottom: 10px !important;
}
.MB20 {
  margin-bottom: 20px !important;
}
.MB30 {
  margin-bottom: 30px !important;
}
.MB40 {
  margin-bottom: 40px !important;
}
.MB50 {
  margin-bottom: 50px !important;
}
.MR0 {
  margin-right: 0 !important;
}
.MR10 {
  margin-right: 10px !important;
}
.MR20 {
  margin-right: 20px !important;
}
.MR30 {
  margin-right: 30px !important;
}
.ML0 {
  margin-left: 0 !important;
}
.ML10 {
  margin-left: 10px !important;
}
.ML20 {
  margin-left: 20px !important;
}
.ML30 {
  margin-left: 30px !important;
}
.ML100 {
  margin-left: 100px !important;
}
.MRL-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.PT0 {
  padding-top: 0px !important;
}
.PT10 {
  padding-top: 10px !important;
}
.PT20 {
  padding-top: 20px !important;
}
.PT30 {
  padding-top: 30px !important;
}
.PB0 {
  padding-bottom: 0px !important;
}
.PB10 {
  padding-bottom: 10px !important;
}
.PB20 {
  padding-bottom: 20px !important;
}
.PB30 {
  padding-bottom: 30px !important;
}
