@charset "utf-8";

/*
 * ヘッダー、フッターなどのサイトの基本部分用スタイルシート
 */

html {
  font-size: 10px;
}

body {
  font-size: 16px;
  font-weight: 500;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #555;
  line-height: 1.8;
  font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
}

p {
  margin-bottom: 1em;
}

iframe {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  line-height: 1.8;
  border: solid 1px #D8D8D8;
  vertical-align: middle;
}

textarea {
  height: 280px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
textarea:focus {
  background: #fff;
}

input[type="submit"] {
  display: table;
  margin-right: auto;
  margin-left: auto;
  padding: 14px 20px;
  min-width: 260px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  background: #0BB6A7;
  border: none;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* layout */

.wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 76px;
  max-width: 2000px;
  min-width: 1260px;
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

body.admin-bar .header {
  top: 32px;
}

.header-content {
  display: flex;
  justify-content: space-between;
}

.header-logo {
  flex-grow: 1;
  padding: 16px 40px;
}

.header-contact {
  padding: 16px 10px;
}

.header-contact li {
  padding: 0 20px;
  border-right: solid 2px #B7BABA;
}

.header-contact li:last-child {
  border-right: none;
}

.header-navigation-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.header-navigation-open {
  position: relative;
  width: 80px;
  height: 100%;
  padding-top: 50px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  background: #0BB7A8;
  z-index: 20;
}

.header-navigation-open .bar {
  display: block;
  width: 48%;
  height: 4px;
  background-color: #fff;
  position: absolute;
  top: -14px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto
}

.header-navigation-open .bar:before,
.header-navigation-open .bar:after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  transition: .2s ease
}

.header-navigation-open .bar:before { top: -13px; }
.header-navigation-open .bar:after { top: 13px; }

.header-navigation-open.active .bar {
  height: 0;
}

.header-navigation-open.active .bar:before {
  transform: rotate(45deg);
  top: -0.3vw
}

.header-navigation-open.active .bar:after {
  transform: rotate(-45deg);
  top: -0.3vw
}

.header-navigation-open .text-close {
  display: none;
}

.header-navigation-open.active .text-menu {
  display: none;
}

.header-navigation-open.active .text-close {
  display: block;
}

.header-navigation {
  position: absolute;
  top: 0;
  right: 0;
  padding: 130px 0;
  z-index: 10;
  width: 860px;
  min-height: 100vh;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: 0.2s;
}

.header-navigation.active {
  transform: translateX(0%);
}

.header-navigation a {
  color: #fff;
  text-decoration: none;
}

.header-navigation-2col {
  max-width: 492px;
}

.header-navigation ul {
  margin: 0 50px 20px 50px;
}

.header-navigation ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

.header-navigation ul li a:before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
  width: 16px;
  height: 1px;
  vertical-align: middle;
  background: #fff;
}

.header-navigation-child-wrap h4 {
  margin-bottom: 15px;
  padding: 0 50px;
  font-size: 22px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.header-navigation hr {
  display: block;
  margin-bottom: 20px;
  height: 0;
  border: none;
  border-bottom: solid #8A9093 1px;
}

/*
body.admin-bar .header {
  padding-top: 52px;
}

@media screen and (max-width:782px) {
  body.admin-bar .header {
    padding-top: 66px;
  }
}
*/

.main {
}

.section-contact {
  color: #fff;
  background: #00262B;
}

.section-contact-list li a .cls-1 { fill: #fff; }
.section-contact-list li a .cls-2 { fill: #006B74; }
.section-contact-list li a:hover .cls-1 { fill: #0BB7A8; }
.section-contact-list li a:hover .cls-2 { fill: #fff; }

.footer-info {
  background: #EDEDED;
}

.footer-news-list li a {
  display: flex;
  padding: 14px 16px;
  text-decoration: none;
  background: #F2F2F2;
}

.footer-news-list li:nth-child(even) a {
  background: #fff;
}

.footer-news-list li a .date {
  margin-right: 30px;
  line-height: 1.4;
  color: #999;
}

.footer-news-list li a .title {
  line-height: 1.4;
  font-weight: 400;
}

.footer-news-more {
  display: inline-block;
  position: relative;
  padding: 11px;
  min-width: 240px;
  text-align: center;
  text-decoration: none;
  color: #0BB7A8;
  border: solid 1px #0BB7A8;
  transition: 0.1s;
}

.footer-news-more:hover {
  color: #fff;
  background-color: #0BB7A8;
}

.footer-table-time {
  width: 100%;
}

.footer-table-time tr th,
.footer-table-time tr td {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
}

.footer-table-time tr th:first-child {
  border-left: solid 1px #959595;
  border-right: solid 1px #959595;
}

.footer-table-time tr th:last-child,
.footer-table-time tr td:last-child {
  padding-right: 20px;
  width: calc(8% + 20px);
  border-right: solid 1px #959595;
}

.footer-table-time tr th:nth-child(2),
.footer-table-time tr th + td {
  padding-left: 20px;
  width: calc(8% + 20px);
}

.footer-table-time tr td img {
  vertical-align: middle;
}

.footer-info-note {
  padding: 5px;
  text-align: center;
  border: solid 1px #006B74;
}

.footer-info-note span {
  color: #006B74;
}

.footer-content a {
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-content-left {
  flex-basis: 35%;
  flex-shrink: 0;
}

.footer-content-right {
  flex-basis: 65%;
  max-width: 860px;
}

.footer-contact {
  display: flex;
  margin-left: -20px;
  margin-left: -20px;
}

.footer-contact li {
  padding: 0 20px;
  border-right: solid 2px #B7BABA;
}

.footer-contact li:last-child {
  border-right: none;
}

.footer-menu li {
  margin-bottom: 6px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.footer-menu li a {
  padding-left: 15px;
  background: top 6px left 0 url(./../images/footer_menu_icon.svg) no-repeat;
  background-size: 8px;
}

.footer-copyright {
  padding: 10px;
  color: #fff;
  background: #000;
}

.footer-float-menu {
  display: none;
}

/*  */

*.nallow {
  max-width: 1280px;
}

a.h-opa {
  transition: 0.2s;
}

a.h-opa:hover {
  opacity: 0.8;
}

section.bg { background-color: #F6F6F6; }
section.bg-green { background-color: #EBF0F1; }
section.bd { border-top: solid 1px #D3D3D3; }

.heading-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 36px;
  text-align: center;
  letter-spacing: -0.04em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  background: bottom url(../images/h3_bg.webp) no-repeat;
}

.heading-bar {
  position: relative;
  margin: 0 calc(50% - 50vw) 30px calc(50% - 50vw);
  width: 100vw;
  padding: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  background: #00262B;
}

.heading-border {
  font-size: 32px;
  text-align: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.heading-border:after {
  content: '';
  display: block;
  margin: 12px auto 16px auto;
  width: 100%;
  max-width: 780px;
  border-bottom: solid 2px #A7A7A7;
}

a.link-more {
  display: inline-block;
  position: relative;
  padding: 6px;
  min-width: 300px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #009580;
  background: #fff;
  border: solid 1px #009580;
  transition: 0.1s;
}

a.link-more:hover {
  color: #fff;
  background-color: #009580;
}

hr.solid {
  display: block;
  height: 0;
  border: none;
  border-bottom: solid #ccc 1px;
}

hr.dotted {
  display: block;
  height: 0;
  border: none;
  border-bottom: dashed #777 1px;
}

hr.solid.mod-max,
hr.dotted.mod-max {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

table.table-fill {
  width: 100%;
}

table.table-fill th {
  padding: 8px 20px;
  font-weight: 400;
  background: #EDEDED;
  vertical-align: middle;
  border: solid 1px #999999;
}

table.table-fill td {
  padding: 8px 20px;
  background: #fff;
  border: solid 1px #999999;
}

table.table-contact {
  width: 100%;
}

table.table-contact .wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0;
}

table.table-contact th {
  padding-right: 50px;
}

table.table-contact td {
  padding-bottom: 40px;
}

table.table-contact .required {
  padding: 0 14px;
  float: right;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #67D1C8;
  border-radius: 4px;
}

.page-index li {
  margin-bottom: 15px;
}

.page-index li a {
  display: block;
  position: relative;
  padding: 6px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #009580;
  background: #fff;
  border: solid 1px #009580;
  transition: 0.1s;
}

.page-index li a:hover {
  color: #fff;
  background-color: #009580;
}

.wpcf7-spinner {
  margin-top: 20px !important;
}

.wpcf7-not-valid-tip {
  font-size: 16px !important;
}

.list-indent li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-check > li {
  padding-left: 28px;
  background: top 0.4em left 0 url(../images/check_icon.svg) no-repeat;
  background-size: 1.1em;
}

.list-merit li {
  margin-bottom: 25px;
  padding-top: 2px;
  padding-left: 40px;
  background: top left url(../images/pages/suuji_icon_1.svg) no-repeat;
  background-size: 30px;
}

.list-merit li:last-child {
  margin-bottom: 0;
}

.list-merit li:nth-child(2) { background-image: url(../images/pages/suuji_icon_2.svg); }
.list-merit li:nth-child(3) { background-image: url(../images/pages/suuji_icon_3.svg); }
.list-merit li:nth-child(4) { background-image: url(../images/pages/suuji_icon_4.svg); }

.list-step li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding: 30px;
  background: #fff;
}

.list-step li:last-child {
  margin-bottom: 0;
}

.list-step li:after {
  position: absolute;
  bottom: -36px;
  left: 50%;
  content: '';
  display: block;
  margin-left: -18px;
  width: 36px;
  height: 36px;
  border: 1px solid;
  border-color:  transparent transparent #747474 #747474;
  transform: rotate(-45deg);
}

.list-step li:last-child:after {
  display: none;
}

.list-step li .no {
  display: flex;
  align-items: center;
  margin-right: 40px;
  color: #B4E5E0;
  line-height: 1.2;
  font-size: 26px;
  font-weight: 800;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.list-step li .no span {
  margin-left: 24px;
  font-size: 80px;
  font-weight: 400;
}

.list-step li .text {
  margin-right: 20px;
  flex-grow: 1;
}

.list-step li .image {
  flex-shrink: 0;
  flex-basis: 190px;
}

.side-image {
  display: flex;
}

.side-image .image {
  flex-shrink: 0;
  margin-left: 40px;
}