@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
  -webkit-appearance: none;
}

/*―――――――――――――――――――――――――*
*	共通
*―――――――――――――――――――――――――*/
:root {
  --black: #0F1419;
  --ff: "Noto Sans JP", sans-serif;
  --en: "Roboto", sans-serif;
  --mc: #3F7F2F;
  --usu_green: #F3F6EC;
  --orange: #ED6B00;
  --hada: #FDFCF7;
  --gold: #C1AE6F;
  --yellow: #FDE743;
}

body {
  font-family: var(--ff);
  color: var(--black);
  font-size: 15px;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 50px;
}
body.fixed {
  position: fixed;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.w1080 {
  max-width: 1080px;
  margin: 0 auto;
}

.ttl01 {
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 50px;
}
.ttl01 > span {
  display: block;
}
.ttl01 .en {
  font-family: var(--en);
  color: var(--mc);
  letter-spacing: 0.2em;
  font-size: 16px;
  margin-bottom: 25px;
}
.ttl01 .row01 {
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.ttl01 .row02 {
  max-width: 690px;
  margin: 0 auto;
  font-size: 50px;
  letter-spacing: 0.09em;
  color: var(--mc);
  background: url(../img/top/dot.svg) repeat-x left 22px/auto 5px;
}
.ttl01 .row02 span {
  background: #fff;
  padding: 0 12px;
}

.ttl02 {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 50px;
  position: relative;
}
.ttl02:after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: var(--mc);
}
.ttl02 > span {
  display: block;
}
.ttl02 .en {
  font-family: var(--en);
  color: var(--mc);
  letter-spacing: 0.2em;
  font-size: 16px;
  margin-bottom: 20px;
}
.ttl02 .ja {
  font-size: 40px;
  letter-spacing: 0.09em;
  margin-bottom: 25px;
}
.ttl02:has(+ .lead_text01) {
  margin-bottom: 25px;
}

.lead_text01 {
  font-size: 16px;
  line-height: 2.25;
  margin-bottom: 40px;
}

.btn01 {
  position: relative;
  width: 260px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--orange);
  color: var(--orange);
  background: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
}
@media (any-hover: hover) {
  .btn01 {
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .btn01:hover {
    background: var(--orange);
    color: #fff;
  }
  .btn01:hover:after {
    right: 12px;
  }
  .btn01:after {
    transition: 0.4s ease;
  }
}
.btn01:after {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange) url(../img/common/btn_arrow.svg) no-repeat center/9px auto;
}

.btn02 {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 46px;
  background: var(--orange) url(../img/common/arrow_white.svg) no-repeat right 15px center/6px auto;
  border-radius: 50px;
  color: #fff;
}
@media (any-hover: hover) {
  .btn02 {
    transition: opacity 0.4s ease;
  }
  .btn02:hover {
    opacity: 0.6 !important;
  }
}

.gmap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*―――――――――――――――――――――――――*
*	header
*―――――――――――――――――――――――――*/
#header_top {
  position: fixed;
  z-index: 998;
  width: 100%;
  top: 0;
  color: var(--mc);
  font-size: 16px;
  line-height: 1;
  background: var(--hada);
  border-bottom: solid 1px #C1AE6F;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header_top ul {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
#header_top li {
  padding: 0 24px;
  border-right: solid 1px var(--gold);
  padding-bottom: 1px;
}
#header_top li:last-child {
  border-right: none;
}
#header_top li > span {
  display: inline-block;
  padding: 3px 0;
}
#header_top .cal {
  background: url(../img/common/ic_cal.svg) no-repeat left center/20px auto;
  padding-left: 30px;
}
#header_top .car {
  background: url(../img/common/ic_car.svg) no-repeat left center/23px auto;
  padding-left: 32px;
}
#header_top .tr {
  background: url(../img/common/ic_tr.svg) no-repeat left center/17px auto;
  padding-left: 26px;
}

#header_bottom {
  height: 110px;
  display: flex;
  line-height: 1;
  align-items: center;
  border-bottom: solid 1px #ccc;
  padding-left: 20px;
  padding-right: 105px;
}
#header_bottom #logo {
  margin-right: auto;
}
@media (any-hover: hover) {
  #header_bottom #logo {
    transition: opacity 0.4s ease;
  }
  #header_bottom #logo:hover {
    opacity: 0.6 !important;
  }
}
#header_bottom #logo img {
  width: 427px;
}
#header_bottom .tel_area {
  background: var(--usu_green);
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  height: 70px;
}
#header_bottom .tel_area .left {
  width: 138px;
  background: var(--mc);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
#header_bottom .tel_area .right {
  padding: 10px 20px 10px;
}
#header_bottom .tel_area .num {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 5px;
  background: url(../img/common/free.svg) no-repeat left center/43px auto;
  padding-left: 50px;
}
#header_bottom .tel_area .time {
  font-size: 13px;
  letter-spacing: 0;
  padding-left: 3px;
}
#header_bottom .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 70px;
  background: var(--orange);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 0 #D9D9D9;
}
#header_bottom .contact span {
  background: url(../img/common/mail.svg) no-repeat left center/26px auto;
  padding-bottom: 4px;
  padding-left: 34px;
}
@media (any-hover: hover) {
  #header_bottom .contact {
    transition: 0.4s ease;
  }
  #header_bottom .contact:hover {
    transform: translate(0, 4px);
    box-shadow: none;
  }
}

#hb_btn {
  z-index: 999;
  position: fixed;
  background: #fff;
  top: 70px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: solid 2px #AAAAAA;
  cursor: pointer;
  box-shadow: 0 4px 0 #D9D9D9;
  padding-top: 15px;
}
#hb_btn.open .bar:nth-child(1) {
  transform: translate(0, 10px) rotate(45deg);
}
#hb_btn.open .bar:nth-child(2) {
  opacity: 0;
}
#hb_btn.open .bar:nth-child(3) {
  transform: translate(0, -10px) rotate(-45deg);
}
@media (any-hover: hover) {
  #hb_btn {
    transition: 0.4s ease;
  }
  #hb_btn:hover {
    transform: translate(0, 4px);
    box-shadow: none;
  }
}
#hb_btn .bar {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background: var(--black);
  margin: 0 auto 7px;
  transition: 0.4s ease;
}
#hb_btn .text {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}

/*―――――――――――――――――――――――――*
*	g_nav
*―――――――――――――――――――――――――*/
#g_nav {
  border-bottom: solid 1px #ccc;
}
#g_nav ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 16px;
}
#g_nav ul a {
  display: block;
  padding: 17px 0 16px;
  text-align: center;
  position: relative;
}
#g_nav ul a:after {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--orange);
}
#g_nav ul a.on {
  font-weight: bold;
}
#g_nav ul a.on:after {
  opacity: 1;
}
@media (any-hover: hover) {
  #g_nav ul a {
    transition: color 0.4s ease;
  }
  #g_nav ul a:after {
    transition: opacity 0.4s ease;
  }
  #g_nav ul a:hover {
    color: var(--orange);
  }
  #g_nav ul a:hover:after {
    opacity: 1;
  }
}

/*―――――――――――――――――――――――――*
*	main_nav
*―――――――――――――――――――――――――*/
#main_nav {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  background: var(--hada);
  top: 0;
  left: 0;
  overflow: auto;
  display: none;
}
#main_nav .main {
  padding: 140px 0 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: solid 1px #CFDEC6;
  gap: 0 20px;
}
#main_nav .main .ttl {
  font-weight: bold;
  font-size: 17px;
  color: var(--mc);
  margin-bottom: 22px;
  padding-left: 32px;
}
#main_nav .main .ft01 {
  background: url(../img/common/ft01.svg) no-repeat left 7px/21px auto;
}
#main_nav .main .ft02 {
  background: url(../img/common/ft02.svg) no-repeat left 6px/22px auto;
}
#main_nav .main .ft03 {
  background: url(../img/common/ft03.svg) no-repeat left 3px/25px auto;
}
#main_nav .main .ft04 {
  background: url(../img/common/ft04.svg) no-repeat left 3px/18px auto;
  padding-left: 28px;
}
#main_nav .main .ft05 {
  background: url(../img/common/ft05.svg) no-repeat left 3px/18px auto;
  padding-left: 26px;
}
#main_nav .main ul {
  font-size: 14px;
  line-height: 1.5714285714;
  display: grid;
  gap: 15px 0;
}
#main_nav .main ul a {
  padding-left: 20px;
  display: inline-block;
  background: url(../img/common/arrow_green.svg) no-repeat 4px 8px/5px auto;
}
@media (any-hover: hover) {
  #main_nav .main ul a {
    transition: opacity 0.4s ease;
  }
  #main_nav .main ul a:hover {
    opacity: 0.6 !important;
  }
}
#main_nav .sub01 {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  line-height: 1;
  margin-top: 50px;
}
#main_nav .tel_area {
  background: var(--usu_green);
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  height: 70px;
}
#main_nav .tel_area .left {
  width: 138px;
  background: var(--mc);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
#main_nav .tel_area .right {
  padding: 10px 20px 10px;
}
#main_nav .tel_area .num {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 5px;
  background: url(../img/common/free.svg) no-repeat left center/43px auto;
  padding-left: 50px;
}
#main_nav .tel_area .time {
  font-size: 13px;
  letter-spacing: 0;
  padding-left: 3px;
}
#main_nav .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  background: var(--orange);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 0 #D9D9D9;
}
#main_nav .contact span {
  background: url(../img/common/mail.svg) no-repeat left center/26px auto;
  padding-bottom: 4px;
  padding-left: 34px;
}
@media (any-hover: hover) {
  #main_nav .contact {
    transition: 0.4s ease;
  }
  #main_nav .contact:hover {
    transform: translate(0, 4px);
    box-shadow: none;
  }
}
#main_nav .diagnosis {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  border: solid 2px var(--mc);
  letter-spacing: 0.025em;
  box-shadow: 0 4px 0 #D9D9D9;
}
#main_nav .diagnosis span {
  background: url(../img/common/ic_search.svg) no-repeat left center/24px auto;
  padding-bottom: 4px;
  padding-left: 34px;
  padding-top: 4px;
}
@media (any-hover: hover) {
  #main_nav .diagnosis {
    transition: 0.4s ease;
  }
  #main_nav .diagnosis:hover {
    transform: translate(0, 4px);
    box-shadow: none;
  }
}

/*―――――――――――――――――――――――――*
*	cta
*―――――――――――――――――――――――――*/
.contact_cta {
  background: url(../img/common/cta_l.svg) no-repeat 15px bottom/102px auto, url(../img/common/cta_r.svg) no-repeat top 120px right -50px/180px auto, #F3F6EC;
  border-radius: 14px;
  padding: 48px 98px 48px;
}
.contact_cta > .ttl {
  position: relative;
  color: var(--mc);
  font-size: 32px;
  max-width: fit-content;
  padding-bottom: 8px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 55px;
  line-height: 1;
}
.contact_cta > .ttl span {
  position: relative;
  z-index: 2;
}
.contact_cta > .ttl span:before, .contact_cta > .ttl span:after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 46px;
  background: var(--mc);
  top: 0;
}
.contact_cta > .ttl span:before {
  left: -30px;
  transform: rotate(-30deg);
}
.contact_cta > .ttl span:after {
  right: -30px;
  transform: rotate(30deg);
}
.contact_cta > .ttl:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: var(--yellow);
}
.contact_cta .grid {
  display: grid;
  gap: 0 42px;
  grid-template-columns: 1fr 1fr;
}
.contact_cta .grid > div {
  background: #fff;
  border-radius: 10px;
  height: 250px;
  text-align: center;
  padding-top: 38px;
}
.contact_cta .grid .ttl {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 26px;
}
.contact_cta .grid .ttl .tel {
  background: url(../img/common/cta_tel_ttl.svg) no-repeat left center/21px auto;
  padding: 10px 0 10px 33px;
}
.contact_cta .grid .ttl .mail {
  padding: 10px 0 10px 40px;
  background: url(../img/common/cta_mail_ttl.svg) no-repeat 0 16px/26px auto;
}
.contact_cta .grid .left .text01, .contact_cta .grid .left .tel_num01 {
  line-height: 1;
}
.contact_cta .grid .left .text01 {
  text-align: center;
  font-size: 18px;
}
.contact_cta .grid .left .tel_num {
  color: var(--mc);
  font-weight: bold;
  font-size: 37px;
  letter-spacing: 0;
  font-family: var(--en);
  padding-left: 66px;
  background: url(../img/common/free_cta.svg) no-repeat left center/58px auto;
}
.contact_cta .grid .left .time {
  line-height: 1;
  padding-left: 1em;
}
.contact_cta .grid .contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  background: var(--orange);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 0 #D9D9D9;
  margin: 0 auto 20px;
}
.contact_cta .grid .contact_btn span {
  background: url(../img/common/mail.svg) no-repeat left center/26px auto;
  padding-bottom: 4px;
  padding-left: 34px;
}
@media (any-hover: hover) {
  .contact_cta .grid .contact_btn {
    transition: 0.4s ease;
  }
  .contact_cta .grid .contact_btn:hover {
    transform: translate(0, 4px);
    box-shadow: none;
  }
}

/*―――――――――――――――――――――――――*
*	footer
*―――――――――――――――――――――――――*/
footer {
  background: var(--usu_green);
  padding-top: 80px;
}
footer small {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 95px;
  font-size: 13px;
  border-top: solid 1px #CFDEC6;
}

#footer_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: solid 1px #CFDEC6;
}
#footer_top .left {
  width: 580px;
  padding-top: 15px;
  border-right: solid 1px #CFDEC6;
}
#footer_top .left .address {
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
#footer_top .left ul {
  display: flex;
  gap: 0 10px;
}
#footer_top .left ul li {
  display: flex;
  border: solid 1px #CFDEC6;
  border-radius: 5px;
  align-items: center;
  padding: 0 18px 0 45px;
  height: 38px;
  color: var(--mc);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
#footer_top .left ul .cal {
  background: #fff url(../img/common/ic_cal.svg) no-repeat 15px center/17px auto;
}
#footer_top .left ul .car {
  background: #fff url(../img/common/ic_car.svg) no-repeat 15px center/19px auto;
}
#footer_top .left ul .train {
  background: #fff url(../img/common/ic_tr.svg) no-repeat 18px center/15px auto;
  padding-left: 42px;
}
#footer_top .center {
  width: 320px;
  padding-left: 20px;
  line-height: 1;
  border-right: solid 1px #CFDEC6;
}
#footer_top .center .ttl {
  margin-bottom: 14px;
}
#footer_top .center .tel_num {
  font-family: var(--en);
  color: var(--mc);
  font-weight: bold;
  font-size: 32px;
  padding-left: 53px;
  background: url(../img/common/free_cta.svg) no-repeat left center/50px auto;
  margin-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.01em;
}
#footer_top .center .time {
  font-size: 13px;
  letter-spacing: 0;
}
#footer_top .right {
  width: 180px;
  padding-left: 20px;
}
#footer_top .right ul {
  display: grid;
  gap: 12px 0;
}
#footer_top .right a {
  display: flex;
  height: 40px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
@media (any-hover: hover) {
  #footer_top .right a {
    transition: opacity 0.4s ease;
  }
  #footer_top .right a:hover {
    opacity: 0.6 !important;
  }
}
#footer_top .right .contact {
  background: var(--orange) url(../img/common/arrow_white.svg) no-repeat right 10px center/5px auto;
  color: #fff;
  font-size: 13px;
  padding-right: 10px;
}
#footer_top .right .contact span {
  padding-left: 21px;
  background: url(../img/common/mail.svg) no-repeat left center/16px auto;
}
#footer_top .right .diagnosis {
  border: solid 1px var(--mc);
  background: #fff url(../img/common/arrow_green.svg) no-repeat right 10px center/5px auto;
  font-size: 13px;
  padding-right: 10px;
}
#footer_top .right .diagnosis span {
  padding-left: 21px;
  background: url(../img/common/ic_search.svg) no-repeat left center/16px auto;
}

#footer_bottom {
  padding: 60px 0 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 20px;
}
#footer_bottom .ttl {
  font-weight: bold;
  font-size: 17px;
  color: var(--mc);
  margin-bottom: 22px;
  padding-left: 32px;
}
#footer_bottom .ft01 {
  background: url(../img/common/ft01.svg) no-repeat left 7px/21px auto;
}
#footer_bottom .ft02 {
  background: url(../img/common/ft02.svg) no-repeat left 6px/22px auto;
}
#footer_bottom .ft03 {
  background: url(../img/common/ft03.svg) no-repeat left 3px/25px auto;
}
#footer_bottom .ft04 {
  background: url(../img/common/ft04.svg) no-repeat left 3px/18px auto;
  padding-left: 28px;
}
#footer_bottom .ft05 {
  background: url(../img/common/ft05.svg) no-repeat left 3px/18px auto;
  padding-left: 26px;
}
#footer_bottom ul {
  font-size: 14px;
  line-height: 1.5714285714;
  display: grid;
  gap: 15px 0;
}
#footer_bottom ul a {
  padding-left: 20px;
  display: inline-block;
  background: url(../img/common/arrow_green.svg) no-repeat 4px 8px/5px auto;
}
@media (any-hover: hover) {
  #footer_bottom ul a {
    transition: opacity 0.4s ease;
  }
  #footer_bottom ul a:hover {
    opacity: 0.6 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
  body {
    font-size: calc(15 / 1240 * 100vw);
    padding-top: calc(50 / 1240 * 100vw);
  }
  .w1200 {
    max-width: calc(1200 / 1240 * 100vw);
  }
  .w1080 {
    max-width: calc(1080 / 1240 * 100vw);
  }
  .ttl01 {
    margin-bottom: calc(50 / 1240 * 100vw);
  }
  .ttl01 .en {
    font-size: calc(16 / 1240 * 100vw);
    margin-bottom: calc(25 / 1240 * 100vw);
  }
  .ttl01 .row01 {
    font-size: calc(24 / 1240 * 100vw);
    margin-bottom: calc(16 / 1240 * 100vw);
  }
  .ttl01 .row02 {
    max-width: calc(690 / 1240 * 100vw);
    font-size: calc(50 / 1240 * 100vw);
    background: url(../img/top/dot.svg) repeat-x left calc(22 / 1240 * 100vw)/auto calc(5 / 1240 * 100vw);
  }
  .ttl01 .row02 span {
    padding: 0 calc(12 / 1240 * 100vw);
  }
  .ttl02 {
    margin-bottom: calc(50 / 1240 * 100vw);
  }
  .ttl02:after {
    width: calc(120 / 1240 * 100vw);
    height: calc(2 / 1240 * 100vw);
  }
  .ttl02 .en {
    font-size: calc(16 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  .ttl02 .ja {
    font-size: calc(40 / 1240 * 100vw);
    margin-bottom: calc(25 / 1240 * 100vw);
  }
  .ttl02:has(+ .lead_text01) {
    margin-bottom: calc(25 / 1240 * 100vw);
  }
  .lead_text01 {
    font-size: calc(16 / 1240 * 100vw);
    margin-bottom: calc(40 / 1240 * 100vw);
  }
  .btn01 {
    width: calc(260 / 1240 * 100vw);
    height: calc(56 / 1240 * 100vw);
    border: solid calc(2 / 1240 * 100vw) var(--orange);
    border-radius: calc(50 / 1240 * 100vw);
    font-size: calc(17 / 1240 * 100vw);
  }
  .btn01:after {
    right: calc(18 / 1240 * 100vw);
    width: calc(20 / 1240 * 100vw);
    height: calc(20 / 1240 * 100vw);
    background: var(--orange) url(../img/common/btn_arrow.svg) no-repeat center/calc(9 / 1240 * 100vw) auto;
  }
  .btn02 {
    width: calc(200 / 1240 * 100vw);
    height: calc(46 / 1240 * 100vw);
    background: var(--orange) url(../img/common/arrow_white.svg) no-repeat right calc(15 / 1240 * 100vw) center/calc(6 / 1240 * 100vw) auto;
    border-radius: calc(50 / 1240 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	header
  *―――――――――――――――――――――――――*/
  #header_top {
    font-size: calc(16 / 1240 * 100vw);
    height: calc(50 / 1240 * 100vw);
  }
  #header_top li {
    padding: 0 calc(24 / 1240 * 100vw);
    padding-bottom: calc(1 / 1240 * 100vw);
  }
  #header_top li > span {
    padding: calc(3 / 1240 * 100vw) 0;
  }
  #header_top .cal {
    background: url(../img/common/ic_cal.svg) no-repeat left center/calc(20 / 1240 * 100vw) auto;
    padding-left: calc(30 / 1240 * 100vw);
  }
  #header_top .car {
    background: url(../img/common/ic_car.svg) no-repeat left center/calc(23 / 1240 * 100vw) auto;
    padding-left: calc(32 / 1240 * 100vw);
  }
  #header_top .tr {
    background: url(../img/common/ic_tr.svg) no-repeat left center/calc(17 / 1240 * 100vw) auto;
    padding-left: calc(26 / 1240 * 100vw);
  }
  #header_bottom {
    height: calc(110 / 1240 * 100vw);
    padding-left: calc(20 / 1240 * 100vw);
    padding-right: calc(105 / 1240 * 100vw);
  }
  #header_bottom #logo img {
    width: calc(427 / 1240 * 100vw);
  }
  #header_bottom .tel_area {
    margin-right: calc(15 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
  }
  #header_bottom .tel_area .left {
    width: calc(138 / 1240 * 100vw);
  }
  #header_bottom .tel_area .right {
    padding: calc(10 / 1240 * 100vw) calc(20 / 1240 * 100vw) calc(10 / 1240 * 100vw);
  }
  #header_bottom .tel_area .num {
    font-size: calc(28 / 1240 * 100vw);
    margin-bottom: calc(5 / 1240 * 100vw);
    background: url(../img/common/free.svg) no-repeat left center/calc(43 / 1240 * 100vw) auto;
    padding-left: calc(50 / 1240 * 100vw);
  }
  #header_bottom .tel_area .time {
    font-size: calc(13 / 1240 * 100vw);
    padding-left: calc(3 / 1240 * 100vw);
  }
  #header_bottom .contact {
    width: calc(245 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
    box-shadow: 0 calc(4 / 1240 * 100vw) 0 #D9D9D9;
  }
  #header_bottom .contact span {
    background: url(../img/common/mail.svg) no-repeat left center/calc(26 / 1240 * 100vw) auto;
    padding-bottom: calc(4 / 1240 * 100vw);
    padding-left: calc(34 / 1240 * 100vw);
  }
  #hb_btn {
    top: calc(70 / 1240 * 100vw);
    right: calc(20 / 1240 * 100vw);
    width: calc(70 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    border: solid calc(2 / 1240 * 100vw) #AAAAAA;
    box-shadow: 0 calc(4 / 1240 * 100vw) 0 #D9D9D9;
    padding-top: calc(15 / 1240 * 100vw);
  }
  #hb_btn.open .bar:nth-child(1) {
    transform: translate(0, calc(10 / 1240 * 100vw)) rotate(45deg);
  }
  #hb_btn.open .bar:nth-child(3) {
    transform: translate(0, calc(-10 / 1240 * 100vw)) rotate(-45deg);
  }
  #hb_btn .bar {
    width: calc(30 / 1240 * 100vw);
    height: calc(3 / 1240 * 100vw);
    border-radius: calc(5 / 1240 * 100vw);
    margin: 0 auto calc(7 / 1240 * 100vw);
  }
  #hb_btn .text {
    font-size: calc(12 / 1240 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	g_nav
  *―――――――――――――――――――――――――*/
  #g_nav ul {
    font-size: calc(16 / 1240 * 100vw);
  }
  #g_nav ul a {
    padding: calc(17 / 1240 * 100vw) 0 calc(16 / 1240 * 100vw);
  }
  #g_nav ul a:after {
    bottom: calc(-2 / 1240 * 100vw);
    height: calc(3 / 1240 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	main_nav
  *―――――――――――――――――――――――――*/
  #main_nav .main {
    padding: calc(140 / 1240 * 100vw) 0 calc(70 / 1240 * 100vw);
    gap: 0 calc(20 / 1240 * 100vw);
  }
  #main_nav .main .ttl {
    font-size: calc(17 / 1240 * 100vw);
    margin-bottom: calc(22 / 1240 * 100vw);
    padding-left: calc(32 / 1240 * 100vw);
  }
  #main_nav .main .ft01 {
    background: url(../img/common/ft01.svg) no-repeat left calc(7 / 1240 * 100vw)/calc(21 / 1240 * 100vw) auto;
  }
  #main_nav .main .ft02 {
    background: url(../img/common/ft02.svg) no-repeat left calc(6 / 1240 * 100vw)/calc(22 / 1240 * 100vw) auto;
  }
  #main_nav .main .ft03 {
    background: url(../img/common/ft03.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(25 / 1240 * 100vw) auto;
  }
  #main_nav .main .ft04 {
    background: url(../img/common/ft04.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(18 / 1240 * 100vw) auto;
    padding-left: calc(28 / 1240 * 100vw);
  }
  #main_nav .main .ft05 {
    background: url(../img/common/ft05.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(18 / 1240 * 100vw) auto;
    padding-left: calc(26 / 1240 * 100vw);
  }
  #main_nav .main ul {
    font-size: calc(14 / 1240 * 100vw);
    gap: calc(15 / 1240 * 100vw) 0;
  }
  #main_nav .main ul a {
    padding-left: calc(20 / 1240 * 100vw);
    background: url(../img/common/arrow_green.svg) no-repeat calc(4 / 1240 * 100vw) calc(8 / 1240 * 100vw)/calc(5 / 1240 * 100vw) auto;
  }
  #main_nav .sub01 {
    gap: 0 calc(20 / 1240 * 100vw);
    margin-top: calc(50 / 1240 * 100vw);
  }
  #main_nav .tel_area {
    margin-right: calc(15 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
  }
  #main_nav .tel_area .left {
    width: calc(138 / 1240 * 100vw);
  }
  #main_nav .tel_area .right {
    padding: calc(10 / 1240 * 100vw) calc(20 / 1240 * 100vw) calc(10 / 1240 * 100vw);
  }
  #main_nav .tel_area .num {
    font-size: calc(28 / 1240 * 100vw);
    margin-bottom: calc(5 / 1240 * 100vw);
    background: url(../img/common/free.svg) no-repeat left center/calc(43 / 1240 * 100vw) auto;
    padding-left: calc(50 / 1240 * 100vw);
  }
  #main_nav .tel_area .time {
    font-size: calc(13 / 1240 * 100vw);
    padding-left: calc(3 / 1240 * 100vw);
  }
  #main_nav .contact {
    width: calc(300 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
    box-shadow: 0 calc(4 / 1240 * 100vw) 0 #D9D9D9;
  }
  #main_nav .contact span {
    background: url(../img/common/mail.svg) no-repeat left center/calc(26 / 1240 * 100vw) auto;
    padding-bottom: calc(4 / 1240 * 100vw);
    padding-left: calc(34 / 1240 * 100vw);
  }
  #main_nav .diagnosis {
    width: calc(300 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
    border: solid calc(2 / 1240 * 100vw) var(--mc);
    box-shadow: 0 calc(4 / 1240 * 100vw) 0 #D9D9D9;
  }
  #main_nav .diagnosis span {
    background: url(../img/common/ic_search.svg) no-repeat left center/calc(24 / 1240 * 100vw) auto;
    padding-bottom: calc(4 / 1240 * 100vw);
    padding-left: calc(34 / 1240 * 100vw);
    padding-top: calc(4 / 1240 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	cta
  *―――――――――――――――――――――――――*/
  .contact_cta {
    background: url(../img/common/cta_l.svg) no-repeat calc(15 / 1240 * 100vw) bottom/calc(102 / 1240 * 100vw) auto, url(../img/common/cta_r.svg) no-repeat top calc(120 / 1240 * 100vw) right calc(-50 / 1240 * 100vw)/calc(180 / 1240 * 100vw) auto, #F3F6EC;
    border-radius: calc(14 / 1240 * 100vw);
    padding: calc(48 / 1240 * 100vw) calc(98 / 1240 * 100vw) calc(48 / 1240 * 100vw);
  }
  .contact_cta > .ttl {
    font-size: calc(32 / 1240 * 100vw);
    padding-bottom: calc(8 / 1240 * 100vw);
    margin: 0 auto calc(55 / 1240 * 100vw);
  }
  .contact_cta > .ttl span:before, .contact_cta > .ttl span:after {
    width: calc(2 / 1240 * 100vw);
    height: calc(46 / 1240 * 100vw);
  }
  .contact_cta > .ttl span:before {
    left: calc(-30 / 1240 * 100vw);
  }
  .contact_cta > .ttl span:after {
    right: calc(-30 / 1240 * 100vw);
  }
  .contact_cta > .ttl:after {
    height: calc(10 / 1240 * 100vw);
  }
  .contact_cta .grid {
    gap: 0 calc(42 / 1240 * 100vw);
  }
  .contact_cta .grid > div {
    border-radius: calc(10 / 1240 * 100vw);
    height: calc(250 / 1240 * 100vw);
    padding-top: calc(38 / 1240 * 100vw);
  }
  .contact_cta .grid .ttl {
    font-size: calc(20 / 1240 * 100vw);
    margin-bottom: calc(26 / 1240 * 100vw);
  }
  .contact_cta .grid .ttl .tel {
    background: url(../img/common/cta_tel_ttl.svg) no-repeat left center/calc(21 / 1240 * 100vw) auto;
    padding: calc(10 / 1240 * 100vw) 0 calc(10 / 1240 * 100vw) calc(33 / 1240 * 100vw);
  }
  .contact_cta .grid .ttl .mail {
    padding: calc(10 / 1240 * 100vw) 0 calc(10 / 1240 * 100vw) calc(40 / 1240 * 100vw);
    background: url(../img/common/cta_mail_ttl.svg) no-repeat 0 calc(16 / 1240 * 100vw)/calc(26 / 1240 * 100vw) auto;
  }
  .contact_cta .grid .left .text01 {
    font-size: calc(18 / 1240 * 100vw);
  }
  .contact_cta .grid .left .tel_num {
    font-size: calc(37 / 1240 * 100vw);
    padding-left: calc(66 / 1240 * 100vw);
    background: url(../img/common/free_cta.svg) no-repeat left center/calc(58 / 1240 * 100vw) auto;
  }
  .contact_cta .grid .contact_btn {
    width: calc(300 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    border-radius: calc(8 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
    box-shadow: 0 calc(4 / 1240 * 100vw) 0 #D9D9D9;
    margin: 0 auto calc(20 / 1240 * 100vw);
  }
  .contact_cta .grid .contact_btn span {
    background: url(../img/common/mail.svg) no-repeat left center/calc(26 / 1240 * 100vw) auto;
    padding-bottom: calc(4 / 1240 * 100vw);
    padding-left: calc(34 / 1240 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	footer
  *―――――――――――――――――――――――――*/
  footer {
    padding-top: calc(80 / 1240 * 100vw);
  }
  footer small {
    height: calc(95 / 1240 * 100vw);
    font-size: calc(13 / 1240 * 100vw);
  }
  #footer_top {
    padding-bottom: calc(50 / 1240 * 100vw);
  }
  #footer_top .left {
    width: calc(580 / 1240 * 100vw);
    padding-top: calc(15 / 1240 * 100vw);
  }
  #footer_top .left .address {
    margin-bottom: calc(12 / 1240 * 100vw);
  }
  #footer_top .left ul {
    gap: 0 calc(10 / 1240 * 100vw);
  }
  #footer_top .left ul li {
    border-radius: calc(5 / 1240 * 100vw);
    padding: 0 calc(18 / 1240 * 100vw) 0 calc(45 / 1240 * 100vw);
    height: calc(38 / 1240 * 100vw);
    font-size: calc(14 / 1240 * 100vw);
  }
  #footer_top .left ul .cal {
    background: #fff url(../img/common/ic_cal.svg) no-repeat calc(15 / 1240 * 100vw) center/calc(17 / 1240 * 100vw) auto;
  }
  #footer_top .left ul .car {
    background: #fff url(../img/common/ic_car.svg) no-repeat calc(15 / 1240 * 100vw) center/calc(19 / 1240 * 100vw) auto;
  }
  #footer_top .left ul .train {
    background: #fff url(../img/common/ic_tr.svg) no-repeat calc(18 / 1240 * 100vw) center/calc(15 / 1240 * 100vw) auto;
    padding-left: calc(42 / 1240 * 100vw);
  }
  #footer_top .center {
    width: calc(320 / 1240 * 100vw);
    padding-left: calc(20 / 1240 * 100vw);
  }
  #footer_top .center .ttl {
    margin-bottom: calc(14 / 1240 * 100vw);
  }
  #footer_top .center .tel_num {
    font-size: calc(32 / 1240 * 100vw);
    padding-left: calc(53 / 1240 * 100vw);
    background: url(../img/common/free_cta.svg) no-repeat left center/calc(50 / 1240 * 100vw) auto;
    margin-bottom: calc(12 / 1240 * 100vw);
  }
  #footer_top .center .time {
    font-size: calc(13 / 1240 * 100vw);
  }
  #footer_top .right {
    width: calc(180 / 1240 * 100vw);
    padding-left: calc(20 / 1240 * 100vw);
  }
  #footer_top .right ul {
    gap: calc(12 / 1240 * 100vw) 0;
  }
  #footer_top .right a {
    height: calc(40 / 1240 * 100vw);
    border-radius: calc(5 / 1240 * 100vw);
  }
  #footer_top .right .contact {
    background: var(--orange) url(../img/common/arrow_white.svg) no-repeat right calc(10 / 1240 * 100vw) center/calc(5 / 1240 * 100vw) auto;
    font-size: calc(13 / 1240 * 100vw);
    padding-right: calc(10 / 1240 * 100vw);
  }
  #footer_top .right .contact span {
    padding-left: calc(21 / 1240 * 100vw);
    background: url(../img/common/mail.svg) no-repeat left center/calc(16 / 1240 * 100vw) auto;
  }
  #footer_top .right .diagnosis {
    background: #fff url(../img/common/arrow_green.svg) no-repeat right calc(10 / 1240 * 100vw) center/calc(5 / 1240 * 100vw) auto;
    font-size: calc(13 / 1240 * 100vw);
    padding-right: calc(10 / 1240 * 100vw);
  }
  #footer_top .right .diagnosis span {
    padding-left: calc(21 / 1240 * 100vw);
    background: url(../img/common/ic_search.svg) no-repeat left center/calc(16 / 1240 * 100vw) auto;
  }
  #footer_bottom {
    padding: calc(60 / 1240 * 100vw) 0 calc(70 / 1240 * 100vw);
    gap: 0 calc(20 / 1240 * 100vw);
  }
  #footer_bottom .ttl {
    font-size: calc(17 / 1240 * 100vw);
    margin-bottom: calc(22 / 1240 * 100vw);
    padding-left: calc(32 / 1240 * 100vw);
  }
  #footer_bottom .ft01 {
    background: url(../img/common/ft01.svg) no-repeat left calc(7 / 1240 * 100vw)/calc(21 / 1240 * 100vw) auto;
  }
  #footer_bottom .ft02 {
    background: url(../img/common/ft02.svg) no-repeat left calc(6 / 1240 * 100vw)/calc(22 / 1240 * 100vw) auto;
  }
  #footer_bottom .ft03 {
    background: url(../img/common/ft03.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(25 / 1240 * 100vw) auto;
  }
  #footer_bottom .ft04 {
    background: url(../img/common/ft04.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(18 / 1240 * 100vw) auto;
    padding-left: calc(28 / 1240 * 100vw);
  }
  #footer_bottom .ft05 {
    background: url(../img/common/ft05.svg) no-repeat left calc(3 / 1240 * 100vw)/calc(18 / 1240 * 100vw) auto;
    padding-left: calc(26 / 1240 * 100vw);
  }
  #footer_bottom ul {
    font-size: calc(14 / 1240 * 100vw);
    gap: calc(15 / 1240 * 100vw) 0;
  }
  #footer_bottom ul a {
    padding-left: calc(20 / 1240 * 100vw);
    background: url(../img/common/arrow_green.svg) no-repeat calc(4 / 1240 * 100vw) calc(8 / 1240 * 100vw)/calc(5 / 1240 * 100vw) auto;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
  body {
    padding-top: 0;
    font-size: calc(14 / 390 * 100vw);
    padding-bottom: calc(50 / 390 * 100vw);
  }
  .w1080 {
    padding-left: calc(20 / 390 * 100vw);
    padding-right: calc(20 / 390 * 100vw);
  }
  .w1200 {
    padding-left: calc(20 / 390 * 100vw);
    padding-right: calc(20 / 390 * 100vw);
  }
  .ttl01 {
    text-align: center;
    font-weight: bold;
    line-height: 1;
    margin-bottom: calc(40 / 390 * 100vw);
  }
  .ttl01 > span {
    display: block;
  }
  .ttl01 .en {
    font-size: calc(13 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  .ttl01 .row01 {
    font-size: calc(18 / 390 * 100vw);
    letter-spacing: 0.15em;
    margin-bottom: calc(16 / 390 * 100vw);
  }
  .ttl01 .row02 {
    max-width: calc(690 / 390 * 100vw);
    margin: 0 auto;
    font-size: calc(32 / 390 * 100vw);
    letter-spacing: 0.09em;
    color: var(--mc);
    background: url(../img/top/dot.svg) repeat-x center calc(16 / 390 * 100vw)/auto calc(3 / 390 * 100vw);
  }
  .ttl01 .row02 span {
    background: #fff;
    padding: 0 calc(4 / 390 * 100vw) 0 calc(6 / 390 * 100vw);
  }
  .ttl02 {
    font-weight: bold;
    line-height: 1;
    margin-bottom: calc(50 / 390 * 100vw);
    position: relative;
  }
  .ttl02:after {
    content: "";
    display: block;
    width: calc(60 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
    background: var(--mc);
  }
  .ttl02 > span {
    display: block;
  }
  .ttl02 .en {
    font-family: var(--en);
    color: var(--mc);
    letter-spacing: 0.2em;
    font-size: calc(14 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
  .ttl02 .ja {
    font-size: calc(26 / 390 * 100vw);
    letter-spacing: 0.09em;
    margin-bottom: calc(25 / 390 * 100vw);
  }
  .ttl02:has(+ .lead_text01) {
    margin-bottom: calc(25 / 390 * 100vw);
  }
  .lead_text01 {
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.6;
    margin-bottom: calc(40 / 390 * 100vw);
  }
  /*―――――――――――――――――――――――――*
  *	header
  *―――――――――――――――――――――――――*/
  #header_top {
    position: static;
    z-index: 998;
    width: 100%;
    top: 0;
    color: var(--mc);
    font-size: calc(11 / 390 * 100vw);
    line-height: 1;
    background: var(--hada);
    border-bottom: solid 1px #C1AE6F;
    height: calc(36 / 390 * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header_top ul {
    letter-spacing: 0;
    display: grid;
    grid-template-columns: 4fr 2.75fr 3.25fr;
    font-weight: 600;
    width: 100%;
  }
  #header_top li {
    padding: 0;
    border-right: solid 1px var(--gold);
    text-align: center;
  }
  #header_top li:last-child {
    border-right: none;
  }
  #header_top li span {
    display: inline-block;
    padding: calc(3 / 390 * 100vw) 0;
  }
  #header_top .cal {
    background: url(../img/common/ic_cal.svg) no-repeat left center/calc(12 / 390 * 100vw) auto;
    padding-left: calc(16 / 390 * 100vw);
  }
  #header_top .car {
    background: url(../img/common/ic_car.svg) no-repeat left center/calc(14 / 390 * 100vw) auto;
    padding-left: calc(18 / 390 * 100vw);
  }
  #header_top .tr {
    background: url(../img/common/ic_tr.svg) no-repeat left center/calc(10 / 390 * 100vw) auto;
    padding-left: calc(14 / 390 * 100vw);
  }
  #header_bottom {
    height: calc(70 / 390 * 100vw);
    display: flex;
    line-height: 1;
    align-items: center;
    border-bottom: solid 1px #ccc;
    padding-left: calc(15 / 390 * 100vw);
    padding-right: calc(20 / 390 * 100vw);
  }
  #header_bottom #logo img {
    width: calc(270 / 390 * 100vw);
  }
  #header_bottom .tel_area, #header_bottom .contact {
    display: none;
  }
  #hb_btn {
    top: calc(45 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    width: calc(50 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
    border-radius: calc(8 / 390 * 100vw);
    border: solid calc(2 / 390 * 100vw) #AAAAAA;
    cursor: pointer;
    box-shadow: 0 calc(2 / 390 * 100vw) 0 #D9D9D9;
    padding-top: calc(10 / 390 * 100vw);
    transition: 0.4s ease;
  }
  #hb_btn.open {
    top: calc(10 / 390 * 100vw);
  }
  #hb_btn.open .bar:nth-child(1) {
    transform: translate(0, calc(6 / 390 * 100vw)) rotate(45deg);
  }
  #hb_btn.open .bar:nth-child(2) {
    opacity: 0;
  }
  #hb_btn.open .bar:nth-child(3) {
    transform: translate(0, calc(-8 / 390 * 100vw)) rotate(-45deg);
  }
  /*―――――――――――――――――――――――――*
  *	main_nav
  *―――――――――――――――――――――――――*/
  /*―――――――――――――――――――――――――*
  *	cta
  *―――――――――――――――――――――――――*/
  /*―――――――――――――――――――――――――*
  *	footer
  *―――――――――――――――――――――――――*/
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #hb_btn {
    transition: 0.4s ease;
  }
  #hb_btn:hover {
    transform: translate(0, calc(4 / 390 * 100vw));
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  #hb_btn .bar {
    display: block;
    width: calc(24 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
    border-radius: calc(5 / 390 * 100vw);
    background: var(--black);
    margin: 0 auto calc(5 / 390 * 100vw);
    transition: 0.4s ease;
  }
  #hb_btn .text {
    display: block;
    text-align: center;
    font-size: calc(8 / 390 * 100vw);
    font-weight: bold;
    letter-spacing: 0;
  }
  #g_nav {
    display: none;
  }
  #main_nav {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: var(--hada);
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
    padding-bottom: calc(50 / 390 * 100vw);
  }
  #main_nav .main {
    padding: calc(50 / 390 * 100vw) 0 calc(30 / 390 * 100vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(30 / 390 * 100vw) 0;
    border-bottom: solid 1px #CFDEC6;
  }
  #main_nav .main .ttl {
    font-weight: bold;
    font-size: calc(17 / 390 * 100vw);
    color: var(--mc);
    margin-bottom: calc(22 / 390 * 100vw);
    padding-left: calc(32 / 390 * 100vw);
  }
  #main_nav .main .ft01 {
    background: url(../img/common/ft01.svg) no-repeat left calc(7 / 390 * 100vw)/calc(21 / 390 * 100vw) auto;
  }
  #main_nav .main .ft02 {
    background: url(../img/common/ft02.svg) no-repeat left calc(6 / 390 * 100vw)/calc(22 / 390 * 100vw) auto;
  }
  #main_nav .main .ft03 {
    background: url(../img/common/ft03.svg) no-repeat left calc(3 / 390 * 100vw)/calc(25 / 390 * 100vw) auto;
  }
  #main_nav .main .ft04 {
    background: url(../img/common/ft04.svg) no-repeat left calc(3 / 390 * 100vw)/calc(18 / 390 * 100vw) auto;
    padding-left: calc(28 / 390 * 100vw);
  }
  #main_nav .main .ft05 {
    background: url(../img/common/ft05.svg) no-repeat left calc(3 / 390 * 100vw)/calc(18 / 390 * 100vw) auto;
    padding-left: calc(26 / 390 * 100vw);
  }
  #main_nav .main ul {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.5714285714;
    display: grid;
    gap: calc(15 / 390 * 100vw) 0;
  }
  #main_nav .main ul a {
    padding-left: calc(20 / 390 * 100vw);
    display: inline-block;
    background: url(../img/common/arrow_green.svg) no-repeat calc(4 / 390 * 100vw) calc(8 / 390 * 100vw)/calc(5 / 390 * 100vw) auto;
  }
  #main_nav .sub01 {
    display: grid;
    gap: calc(15 / 390 * 100vw) 0;
    line-height: 1;
    margin-top: calc(30 / 390 * 100vw);
  }
  #main_nav .tel_area {
    background: var(--usu_green);
    margin-right: 0;
    border-radius: calc(8 / 390 * 100vw);
    overflow: hidden;
    display: flex;
    height: calc(70 / 390 * 100vw);
    margin-bottom: calc(25 / 390 * 100vw);
  }
  #main_nav .tel_area .left {
    width: calc(110 / 390 * 100vw);
    line-height: 1.2;
    font-size: calc(13 / 390 * 100vw);
  }
  #main_nav .tel_area .right {
    padding: calc(15 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  #main_nav .tel_area .num {
    font-family: var(--en);
    font-size: calc(22 / 390 * 100vw);
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: calc(5 / 390 * 100vw);
    background: url(../img/common/free.svg) no-repeat left center/calc(32 / 390 * 100vw) auto;
    padding-left: calc(40 / 390 * 100vw);
  }
  #main_nav .tel_area .time {
    font-size: calc(10 / 390 * 100vw);
    letter-spacing: 0;
    padding-left: calc(3 / 390 * 100vw);
  }
  #main_nav .contact {
    width: 100%;
    height: calc(60 / 390 * 100vw);
    border-radius: calc(8 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    box-shadow: 0 calc(4 / 390 * 100vw) 0 #D9D9D9;
  }
  #main_nav .contact span {
    background: url(../img/common/mail.svg) no-repeat left center/calc(22 / 390 * 100vw) auto;
    padding-bottom: calc(4 / 390 * 100vw);
    padding-left: calc(30 / 390 * 100vw);
  }
  #main_nav .diagnosis {
    width: 100%;
    height: calc(60 / 390 * 100vw);
    background: #fff;
    border-radius: calc(8 / 390 * 100vw);
    font-size: calc(16 / 390 * 100vw);
    border: solid calc(2 / 390 * 100vw) var(--mc);
    box-shadow: 0 calc(4 / 390 * 100vw) 0 #D9D9D9;
  }
  #main_nav .diagnosis span {
    background: url(../img/common/ic_search.svg) no-repeat left center/calc(20 / 390 * 100vw) auto;
    padding-bottom: calc(4 / 390 * 100vw);
    padding-left: calc(34 / 390 * 100vw);
    padding-top: calc(4 / 390 * 100vw);
  }
  .contact_cta {
    background: url(../img/common/cta_l.svg) no-repeat left bottom/calc(80 / 390 * 100vw) auto, url(../img/common/cta_r.svg) no-repeat top calc(120 / 390 * 100vw) right calc(-50 / 390 * 100vw)/calc(150 / 390 * 100vw) auto, #F3F6EC;
    border-radius: calc(8 / 390 * 100vw);
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .contact_cta > .ttl {
    position: relative;
    color: var(--mc);
    font-size: calc(17 / 390 * 100vw);
    max-width: fit-content;
    padding-bottom: calc(4 / 390 * 100vw);
    font-weight: bold;
    text-align: center;
    margin: 0 auto calc(25 / 390 * 100vw);
    line-height: 1;
  }
  .contact_cta > .ttl span {
    position: relative;
    z-index: 2;
  }
  .contact_cta > .ttl span:before, .contact_cta > .ttl span:after {
    position: absolute;
    content: "";
    display: block;
    width: calc(2 / 390 * 100vw);
    height: calc(32 / 390 * 100vw);
    background: var(--mc);
    top: 0;
  }
  .contact_cta > .ttl span:before {
    left: calc(-15 / 390 * 100vw);
  }
  .contact_cta > .ttl span:after {
    right: calc(-15 / 390 * 100vw);
  }
  .contact_cta > .ttl:after {
    height: calc(5 / 390 * 100vw);
  }
  .contact_cta .grid {
    display: grid;
    gap: calc(15 / 390 * 100vw);
    grid-template-columns: 1fr;
  }
  .contact_cta .grid > div {
    background: rgba(255, 255, 255, 0.9);
    border-radius: calc(8 / 390 * 100vw);
    height: calc(190 / 390 * 100vw);
    text-align: center;
    padding-top: calc(26 / 390 * 100vw);
  }
  .contact_cta .grid .ttl {
    font-weight: bold;
    font-size: calc(16 / 390 * 100vw);
    margin-bottom: calc(26 / 390 * 100vw);
  }
  .contact_cta .grid .ttl .tel {
    background: url(../img/common/cta_tel_ttl.svg) no-repeat left center/calc(16 / 390 * 100vw) auto;
    padding: calc(10 / 390 * 100vw) 0 calc(10 / 390 * 100vw) calc(28 / 390 * 100vw);
  }
  .contact_cta .grid .ttl .mail {
    padding: calc(10 / 390 * 100vw) 0 calc(10 / 390 * 100vw) calc(30 / 390 * 100vw);
    background: url(../img/common/cta_mail_ttl.svg) no-repeat 0 calc(16 / 390 * 100vw)/calc(20 / 390 * 100vw) auto;
  }
  .contact_cta .grid .left .text01, .contact_cta .grid .left .tel_num01 {
    line-height: 1;
  }
  .contact_cta .grid .left .text01 {
    text-align: center;
    font-size: calc(15 / 390 * 100vw);
    margin-bottom: calc(5 / 390 * 100vw);
  }
  .contact_cta .grid .left .tel_num {
    font-size: calc(28 / 390 * 100vw);
    padding-left: calc(50 / 390 * 100vw);
    background: url(../img/common/free_cta.svg) no-repeat left center/calc(40 / 390 * 100vw) auto;
  }
  .contact_cta .grid .left .time {
    line-height: 1;
    padding-left: 1em;
    font-size: calc(13 / 390 * 100vw);
  }
  .contact_cta .grid .contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(260 / 390 * 100vw);
    height: calc(54 / 390 * 100vw);
    background: var(--orange);
    border-radius: calc(8 / 390 * 100vw);
    color: #fff;
    font-size: calc(16 / 390 * 100vw);
    box-shadow: 0 calc(4 / 390 * 100vw) 0 #D9D9D9;
    margin: 0 auto calc(15 / 390 * 100vw);
  }
  .contact_cta .grid .contact_btn span {
    background: url(../img/common/mail.svg) no-repeat left center/calc(20 / 390 * 100vw) auto;
    padding-bottom: calc(4 / 390 * 100vw);
    padding-left: calc(30 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .contact_cta .grid .contact_btn {
    transition: 0.4s ease;
  }
  .contact_cta .grid .contact_btn:hover {
    transform: translate(0, calc(4 / 390 * 100vw));
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: calc(60 / 390 * 100vw);
  }
  footer #f_logo {
    width: calc(280 / 390 * 100vw);
  }
  footer small {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(60 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
    letter-spacing: 0;
  }
  #footer_top {
    display: block;
    padding-bottom: calc(30 / 390 * 100vw);
    border-bottom: solid 1px #CFDEC6;
  }
  #footer_top .left {
    width: 100%;
    padding-top: calc(15 / 390 * 100vw);
    border-right: none;
  }
  #footer_top .left .address {
    letter-spacing: 0;
    margin-bottom: calc(12 / 390 * 100vw);
  }
  #footer_top .left ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5 / 390 * 100vw) calc(10 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #footer_top .left ul li {
    display: flex;
    border: solid calc(2 / 390 * 100vw) var(--mc);
    border-radius: calc(5 / 390 * 100vw);
    align-items: center;
    padding: 0 calc(10 / 390 * 100vw) calc(2 / 390 * 100vw) calc(40 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
    color: var(--mc);
    font-size: calc(14 / 390 * 100vw);
    font-weight: 600;
  }
  #footer_top .left ul .cal {
    background: #fff url(../img/common/ic_cal.svg) no-repeat calc(12 / 390 * 100vw) center/calc(20 / 390 * 100vw) auto;
  }
  #footer_top .left ul .car {
    background: #fff url(../img/common/ic_car.svg) no-repeat calc(12 / 390 * 100vw) center/calc(20 / 390 * 100vw) auto;
  }
  #footer_top .left ul .train {
    background: #fff url(../img/common/ic_tr.svg) no-repeat calc(14 / 390 * 100vw) center/calc(16 / 390 * 100vw) auto;
    padding-left: calc(38 / 390 * 100vw);
  }
  #footer_top .center {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    border-right: none;
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  #footer_top .center > a {
    display: block;
    border: solid calc(2 / 390 * 100vw) #CFDEC6;
    border-radius: calc(8 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw);
    background: #fff;
  }
  #footer_top .center .ttl {
    margin-bottom: calc(14 / 390 * 100vw);
  }
  #footer_top .center .tel_num {
    font-family: var(--en);
    color: var(--mc);
    font-weight: bold;
    font-size: calc(32 / 390 * 100vw);
    padding-left: calc(53 / 390 * 100vw);
    background: url(../img/common/free_cta.svg) no-repeat left center/calc(50 / 390 * 100vw) auto;
    margin-bottom: calc(12 / 390 * 100vw);
    display: inline-block;
    letter-spacing: 0.01em;
  }
  #footer_top .center .time {
    font-size: calc(13 / 390 * 100vw);
    letter-spacing: 0;
  }
  #footer_top .right {
    width: 100%;
    padding-left: 0;
  }
  #footer_top .right ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(10 / 390 * 100vw);
  }
  #footer_top .right li {
    width: auto;
  }
  #footer_top .right a {
    display: flex;
    height: calc(40 / 390 * 100vw);
    border-radius: calc(5 / 390 * 100vw);
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #footer_top .right a {
    transition: opacity 0.4s ease;
  }
  #footer_top .right a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 767px) {
  #footer_top .right .contact {
    background: var(--orange) url(../img/common/arrow_white.svg) no-repeat right calc(10 / 390 * 100vw) center/calc(5 / 390 * 100vw) auto;
    color: #fff;
    font-size: calc(13 / 390 * 100vw);
    padding-right: calc(10 / 390 * 100vw);
  }
  #footer_top .right .contact span {
    padding-left: calc(21 / 390 * 100vw);
    background: url(../img/common/mail.svg) no-repeat left center/calc(16 / 390 * 100vw) auto;
  }
  #footer_top .right .diagnosis {
    border: solid 1px var(--mc);
    background: #fff url(../img/common/arrow_green.svg) no-repeat right calc(10 / 390 * 100vw) center/calc(5 / 390 * 100vw) auto;
    font-size: calc(13 / 390 * 100vw);
    padding-right: calc(10 / 390 * 100vw);
  }
  #footer_top .right .diagnosis span {
    padding-left: calc(21 / 390 * 100vw);
    background: url(../img/common/ic_search.svg) no-repeat left center/calc(16 / 390 * 100vw) auto;
  }
  #footer_bottom {
    padding: calc(30 / 390 * 100vw) 0 calc(30 / 390 * 100vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(30 / 390 * 100vw) 0;
  }
  #footer_bottom .ttl {
    font-weight: bold;
    font-size: calc(17 / 390 * 100vw);
    color: var(--mc);
    margin-bottom: calc(22 / 390 * 100vw);
    padding-left: calc(32 / 390 * 100vw);
  }
  #footer_bottom .ft01 {
    background: url(../img/common/ft01.svg) no-repeat left calc(7 / 390 * 100vw)/calc(21 / 390 * 100vw) auto;
  }
  #footer_bottom .ft02 {
    background: url(../img/common/ft02.svg) no-repeat left calc(6 / 390 * 100vw)/calc(22 / 390 * 100vw) auto;
  }
  #footer_bottom .ft03 {
    background: url(../img/common/ft03.svg) no-repeat left calc(3 / 390 * 100vw)/calc(25 / 390 * 100vw) auto;
  }
  #footer_bottom .ft04 {
    background: url(../img/common/ft04.svg) no-repeat left calc(3 / 390 * 100vw)/calc(18 / 390 * 100vw) auto;
    padding-left: calc(28 / 390 * 100vw);
  }
  #footer_bottom .ft05 {
    background: url(../img/common/ft05.svg) no-repeat left calc(3 / 390 * 100vw)/calc(18 / 390 * 100vw) auto;
    padding-left: calc(26 / 390 * 100vw);
  }
  #footer_bottom ul {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.5714285714;
    display: grid;
    gap: calc(15 / 390 * 100vw) 0;
  }
  #footer_bottom ul a {
    padding-left: calc(20 / 390 * 100vw);
    display: inline-block;
    background: url(../img/common/arrow_green.svg) no-repeat calc(4 / 390 * 100vw) calc(8 / 390 * 100vw)/calc(5 / 390 * 100vw) auto;
  }
  #sf_nav {
    position: fixed;
    z-index: 30;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    transition: 0.4s ease;
    transform: translate(0, 100%);
  }
  #sf_nav.on {
    transform: translate(0, 0);
  }
  #sf_nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(50 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    font-weight: bold;
    position: relative;
  }
  #sf_nav a:not(:last-child):after {
    position: absolute;
    right: 0;
    top: 50%;
    content: "";
    margin-top: calc(-10 / 390 * 100vw);
    display: block;
    width: calc(1 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    background: #ccc;
  }
  #sf_nav a span {
    display: inline-block;
    padding: calc(10 / 390 * 100vw) 0;
  }
  #sf_nav a .tel {
    background: url(../img/common/sf_tel.svg) no-repeat left calc(11 / 390 * 100vw)/calc(24 / 390 * 100vw) auto;
    padding-left: calc(30 / 390 * 100vw);
  }
  #sf_nav a .mail {
    background: url(../img/common/sf_mail.svg) no-repeat left calc(15 / 390 * 100vw)/calc(20 / 390 * 100vw) auto;
    padding-left: calc(28 / 390 * 100vw);
  }
  #sf_nav a .list {
    background: url(../img/common/sf_list.svg) no-repeat left calc(14 / 390 * 100vw)/calc(20 / 390 * 100vw) auto;
    padding-left: calc(29 / 390 * 100vw);
  }
}
#mv {
  position: relative;
  height: 680px;
  background: url(../img/top/mv.webp) no-repeat center bottom/cover;
}
#mv .w_text, #mv .icons {
  position: relative;
  z-index: 3;
}
#mv .w_text {
  padding-top: 60px;
  margin-bottom: 20px;
}
#mv .w_text h2 {
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  max-width: fit-content;
  border-bottom: solid 3px var(--orange);
  padding-bottom: 30px;
  margin-bottom: 15px;
}
#mv .w_text h2 > span {
  display: block;
}
#mv .w_text .row01 {
  color: var(--orange);
  font-size: 22px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
#mv .w_text .row01:before, #mv .w_text .row01:after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  background: var(--orange);
}
#mv .w_text .row01:before {
  left: 0;
}
#mv .w_text .row01:after {
  right: 0;
}
#mv .w_text .row02 {
  font-size: 32px;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
#mv .w_text .row03, #mv .w_text .row04 {
  letter-spacing: 0.12em;
}
#mv .w_text .row03 {
  font-size: 46px;
  margin-bottom: 15px;
}
#mv .w_text .row03 span {
  font-size: 60px;
  color: var(--orange);
}
#mv .w_text .row04 {
  font-size: 46px;
}
#mv .w_text .row04 span {
  font-size: 60px;
}
#mv .w_text p {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
#mv .w_text p span {
  color: var(--orange);
}
#mv .icons {
  display: flex;
  line-height: 1;
  color: #fff;
  gap: 0 30px;
}
#mv .icons li {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: url(../img/top/mv_bg01.webp) no-repeat center/cover;
  padding-top: 34px;
}
#mv .icons .ttl {
  font-weight: 900;
  text-align: center;
  font-size: 19px;
}
#mv .icons .num {
  font-weight: bold;
  font-family: var(--en);
  letter-spacing: 0;
}
#mv .icons .ic01 .ttl {
  margin-bottom: 10px;
}
#mv .icons .ic01 .num {
  font-size: 66px;
  text-align: center;
}
#mv .icons .ic01 .unit {
  font-size: 16px;
  font-weight: 900;
  text-align: right;
  padding-right: 18px;
  margin-bottom: 10px;
  margin-top: -3px;
}
#mv .icons .ic01 .desc {
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0;
}
#mv .icons .ic02 .ttl {
  margin-bottom: 10px;
}
#mv .icons .ic02 .w_num {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#mv .icons .ic02 .num {
  font-size: 77px;
}
#mv .icons .ic02 .unit01 {
  font-weight: 900;
  font-size: 28px;
  position: relative;
  top: -10px;
  letter-spacing: 0;
  margin-left: -4px;
}
#mv .icons .ic02 .unit02 {
  font-weight: 900;
  font-size: 24px;
  text-align: center;
}
#mv .img {
  left: calc(50% - 50px);
  bottom: 0;
  position: absolute;
  width: 630px;
  height: 542px;
  background: url(../img/top/mv_human.webp) no-repeat center/cover;
}
#mv .img .name01, #mv .img .name02 {
  position: absolute;
  width: 150px;
  height: 80px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#mv .img .name01 {
  bottom: 75px;
  left: -5px;
}
#mv .img .name02 {
  bottom: 95px;
  right: -20px;
}
#mv .img .position {
  color: var(--orange);
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
}
#mv .img .name {
  font-weight: bold;
  font-size: 20px;
}

#top #section01 {
  overflow: hidden;
  padding: 100px 0;
}
#top #section01 .w1080 {
  position: relative;
}
#top #section01 .w1080:after {
  position: absolute;
  top: 0;
  left: -180px;
  content: "";
  display: block;
  width: 456px;
  height: 606px;
  background: url(../img/top/sc01.webp) no-repeat center/cover;
}
#top #section01 .inner {
  width: 742px;
  margin-left: auto;
}
#top #section01 h2 {
  font-weight: bold;
  color: var(--mc);
  line-height: 1;
  padding-bottom: 40px;
  margin-bottom: 30px;
  background: url(../img/top/dot_min.svg) repeat-x left bottom/auto 2px;
}
#top #section01 h2 > span {
  display: block;
}
#top #section01 h2 .row01 {
  font-size: 30px;
  text-align: center;
  background: url(../img/top/dot.svg) repeat-x center/auto 5px;
  margin-bottom: 30px;
}
#top #section01 h2 .row01 span {
  background: #fff;
  padding: 0 13px;
}
#top #section01 h2 .row02 {
  font-size: 50px;
}
#top #section01 h2 .row02 span {
  color: var(--black);
}
#top #section01 .card_list {
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 15px;
}
#top #section01 .card_list .card {
  background: #FCFBF6;
  border: solid 2px #F5F4ED;
  border-radius: 10px;
  padding: 30px 10px;
}
#top #section01 .card_list .card p {
  text-align: center;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.025em;
  padding-top: 94px;
}
#top #section01 .card_list .card p span {
  color: var(--orange);
  font-weight: bold;
}
#top #section01 .card_list .ic01 {
  background: url(../img/top/sc01_ic01.svg) no-repeat center top/70px auto;
}
#top #section01 .card_list .ic02 {
  background: url(../img/top/sc01_ic02.svg) no-repeat center top/70px auto;
}
#top #section01 .card_list .ic03 {
  background: url(../img/top/sc01_ic03.svg) no-repeat center top/70px auto;
}
#top #section01 .card_list .note {
  font-size: 12px;
  letter-spacing: 0;
  margin-top: 5px;
}
#top #section01 .text01 {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 30px;
}
#top #section01 .bottom_card {
  position: relative;
  z-index: 2;
  background: var(--usu_green) url(../img/top/sc01_iuchi.webp) no-repeat 80px bottom/159px auto;
  width: 910px;
  height: 230px;
  border-radius: 60px 10px 10px 10px;
  margin-left: auto;
  padding: 42px 0 0 290px;
  line-height: 1;
}
#top #section01 .bottom_card h3 {
  margin-bottom: 26px;
}
#top #section01 .bottom_card h3 > span {
  font-weight: bold;
  display: block;
}
#top #section01 .bottom_card h3 .row01 {
  font-size: 20px;
  margin-bottom: 12px;
}
#top #section01 .bottom_card h3 .row02 {
  position: relative;
  color: var(--mc);
  font-size: 32px;
  max-width: fit-content;
  padding-bottom: 8px;
}
#top #section01 .bottom_card h3 .row02 span {
  position: relative;
  z-index: 2;
}
#top #section01 .bottom_card h3 .row02:after {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  display: block;
  width: 99%;
  height: 10px;
  background: var(--yellow);
}
#top #section01 .bottom_card p {
  font-size: 20px;
  font-weight: bold;
  border-top: dashed 1px #8CB808;
  max-width: 542px;
  padding-top: 20px;
}
#top #section01 .bottom_card p span {
  font-size: 24px;
  color: var(--mc);
}
#top #section02 {
  padding-bottom: 95px;
}
#top #section02 .card_list01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
#top #section02 .card_list01 li {
  border-radius: 10px;
  background: #FCFBF6;
  border: solid 2px #F5F4ED;
  padding: 45px 26px;
}
#top #section02 .card_list01 li:nth-child(1) {
  background: #FCFBF6 url(../img/top/sc02_c01_01.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 li:nth-child(2) {
  background: #FCFBF6 url(../img/top/sc02_c01_02.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 li:nth-child(3) {
  background: #FCFBF6 url(../img/top/sc02_c01_03.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 li:nth-child(4) {
  background: #FCFBF6 url(../img/top/sc02_c01_04.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 li:nth-child(5) {
  background: #FCFBF6 url(../img/top/sc02_c01_05.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 li:nth-child(6) {
  background: #FCFBF6 url(../img/top/sc02_c01_06.webp) no-repeat 30px 30px/98px auto;
}
#top #section02 .card_list01 h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  margin-left: 120px;
  max-width: fit-content;
  border-bottom: solid 2px var(--orange);
  letter-spacing: 0.1em;
  padding-bottom: 7px;
  margin-bottom: 28px;
}
#top #section02 .card_list01 p {
  letter-spacing: 0.025em;
}
#top #section02 .w_movie {
  border-radius: 15px;
  background: #FCFBF6;
  border: solid 2px #F5F4ED;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px 75px 35px;
  margin-bottom: 50px;
}
#top #section02 .w_movie .movie {
  width: 570px;
}
#top #section02 .w_movie .movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#top #section02 .w_movie .w_text {
  width: 388px;
}
#top #section02 .w_movie .w_text .bg {
  background: url(../img/top/movie_bg.svg) no-repeat center top/100% auto;
  min-height: 106px;
  text-align: center;
  line-height: 1;
}
#top #section02 .w_movie .w_text .bg p:first-child {
  font-weight: bold;
  color: var(--mc);
  font-size: 28px;
  margin-bottom: 5px;
}
#top #section02 .w_movie .w_text .bg p:last-child {
  font-weight: bold;
}
#top #section02 .w_movie .w_text .bg p:last-child .num {
  font-size: 87px;
  color: var(--orange);
  letter-spacing: -0.025em;
  font-family: var(--en);
}
#top #section02 .w_movie .w_text .bg p:last-child .unit {
  font-size: 33px;
  letter-spacing: 0;
  margin-left: 6px;
  position: relative;
  top: -2px;
}
#top #section02 .w_movie .w_text .text01 {
  color: var(--orange);
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  background: url(../img/top/dot_orange.svg) no-repeat center bottom/auto 4px;
  margin-bottom: 20px;
  padding-bottom: 2px;
}
#top #section02 .w_movie .w_text .label {
  color: var(--mc);
  background: var(--usu_green);
  border: solid 1px #E0E9D1;
  width: 182px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  border-radius: 30px;
  font-size: 16px;
}
#top #section02 .w_movie .w_text .text02 {
  font-size: 19px;
  text-align: center;
  line-height: 1.7368421053;
}
#top #section02 .w_movie .w_text .text02 span {
  color: var(--orange);
  font-weight: bold;
}
#top #section02 .w_motto {
  margin-bottom: 52px;
  background: url(../img/top/motto.webp) no-repeat right top/560px auto;
  padding-top: 40px;
}
#top #section02 .w_motto .text01 {
  font-size: 20px;
  line-height: 1.8;
  background: url(../img/top/dot_mid.svg) no-repeat left bottom/auto 4px;
  padding-bottom: 24px;
  margin-bottom: 30px;
  max-width: 503px;
}
#top #section02 .w_motto .text01 span {
  font-weight: bold;
  color: var(--orange);
}
#top #section02 .w_motto .text02 {
  font-weight: bold;
  font-size: 34px;
  line-height: 1.4705882353;
  margin-bottom: 46px;
}
#top #section02 .w_motto .text02 span {
  color: var(--mc);
}
#top #section02 .w_motto ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
#top #section02 .w_motto ul li {
  border: solid 2px #C5C1A8;
  border-radius: 10px;
  min-height: 110px;
  display: flex;
  align-items: center;
  padding-left: 130px;
}
#top #section02 .w_motto ul li:nth-child(1) {
  background: #fff url(../img/top/motto01.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(2) {
  background: #fff url(../img/top/motto02.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(3) {
  background: #fff url(../img/top/motto03.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(4) {
  background: #fff url(../img/top/motto04.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(5) {
  background: #fff url(../img/top/motto05.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(6) {
  background: #fff url(../img/top/motto06.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul li:nth-child(7) {
  background: #fff url(../img/top/motto07.webp) no-repeat 22px center/83px auto;
}
#top #section02 .w_motto ul p {
  font-size: 17px;
  line-height: 1.7647058824;
  letter-spacing: 0;
}
#top #section02 .w_motto ul p span {
  color: var(--orange);
  font-weight: bold;
}
#top #section02 .bottom_card {
  position: relative;
  z-index: 2;
  background: url(../img/top/sc02_iuchi.webp) no-repeat left bottom/235px auto, url(../img/top/sc02_bottom.webp) no-repeat right 28px bottom/78px auto, var(--usu_green);
  border-radius: 60px 10px 10px 10px;
  margin-left: auto;
  padding: 42px 50px 35px 280px;
  line-height: 1;
}
#top #section02 .bottom_card h3 {
  margin-bottom: 26px;
  letter-spacing: 0.025em;
  background: url(../img/top/dot_mid.svg) repeat-x left bottom/auto 4px;
  padding-bottom: 25px;
}
#top #section02 .bottom_card h3 > span {
  font-weight: bold;
  display: block;
}
#top #section02 .bottom_card h3 .row01 {
  font-size: 22px;
  margin-bottom: 12px;
}
#top #section02 .bottom_card h3 .row02 {
  position: relative;
  font-size: 26px;
  max-width: fit-content;
  padding-bottom: 8px;
}
#top #section02 .bottom_card h3 .row02 span {
  font-size: 32px;
  position: relative;
  z-index: 2;
  color: var(--mc);
}
#top #section02 .bottom_card p {
  line-height: 1.7333333333;
}
#top #section02 .bottom_card p span {
  font-weight: bold;
  color: var(--orange);
}
#top #section03 {
  padding: 80px 0 110px;
  background: #FCFBF6 url(../img/top/sc03_bg.webp) no-repeat center bottom/100% auto;
}
#top #section03 h2 {
  font-weight: bold;
  font-size: 40px;
  color: var(--mc);
  text-align: center;
  background: url(../img/top/news_ttl.svg) no-repeat center top/382px auto;
  padding-top: 55px;
  margin-bottom: 30px;
}
#top #section03 h2 + p {
  text-align: center;
  padding-bottom: 50px;
  font-size: 16px;
}
#top #section03 ul {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px 40px;
  margin-bottom: 38px;
}
#top #section03 ul li:not(:last-child) {
  border-bottom: dashed 1px #ccc;
}
#top #section03 ul a {
  display: flex;
  padding: 20px 40px 20px 0;
  background: url(../img/top/news_arrow.svg) no-repeat right 12px center/10px auto;
}
@media (any-hover: hover) {
  #top #section03 ul a {
    transition: opacity 0.4s ease;
  }
  #top #section03 ul a:hover {
    opacity: 0.6 !important;
  }
}
#top #section03 ul .date {
  font-family: var(--en);
  padding-left: 10px;
  color: #4CA223;
  width: 150px;
}
#top #section03 ul .text {
  width: calc(100% - 150px);
}
#top #section03 .btn01 {
  margin: 0 auto;
}
#top #section04 {
  padding: 80px 0 90px;
}
#top #section04 .card {
  border: solid 2px #C5C1A8;
  min-height: 130px;
  padding: 26px 30px 25px 140px;
  border-radius: 10px;
  margin-bottom: 20px;
}
#top #section04 .card h3 {
  color: var(--mc);
  margin-bottom: 15px;
}
#top #section04 .card h3 a {
  text-decoration: underline;
  font-size: 22px;
  font-weight: bold;
}
#top #section04 .card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
  letter-spacing: 0;
}
#top #section04 .card ul a {
  text-decoration: underline;
  padding-left: 16px;
  background: url(../img/top/news_arrow.svg) no-repeat left 6px/6px auto;
}
@media (any-hover: hover) {
  #top #section04 .card ul a:hover {
    text-decoration: none;
  }
}
#top #section04 .ic01 {
  background: url(../img/top/case01.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic02 {
  background: url(../img/top/case02.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic03 {
  background: url(../img/top/case03.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic04 {
  background: url(../img/top/case04.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic05 {
  background: url(../img/top/case05.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic06 {
  background: url(../img/top/case06.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic07 {
  background: url(../img/top/case07.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic08 {
  background: url(../img/top/case08.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic09 {
  background: url(../img/top/case09.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic10 {
  background: url(../img/top/case10.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic11 {
  background: url(../img/top/case11.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .ic12 {
  background: url(../img/top/case12.webp) no-repeat 22px 24px/83px auto;
}
#top #section04 .contact_cta {
  margin-top: 60px;
}
#top #section05 {
  background: var(--hada);
  padding: 90px 0;
}
#top #section05 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 30px;
}
#top #section05 .card {
  background: #fff;
  border-radius: 10px;
  padding: 250px 15px 40px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}
#top #section05 .card h3 {
  line-height: 1;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-size: 22px;
  color: var(--mc);
  margin-bottom: 12px;
}
#top #section05 .card p {
  line-height: 2;
  margin-bottom: 25px;
}
#top #section05 .card .btn02 {
  margin: 0 auto;
}
#top #section05 .bg01 {
  background: #fff url(../img/top/guide01.webp) no-repeat center 26px/290px auto;
}
#top #section05 .bg02 {
  background: #fff url(../img/top/guide02.webp) no-repeat center 26px/290px auto;
}
#top #section05 .bg03 {
  background: #fff url(../img/top/guide03.webp) no-repeat center 26px/290px auto;
}
#top #section05 .bg04 {
  background: #fff url(../img/top/guide04.webp) no-repeat center 26px/290px auto;
}
#top #section05 .bg05 {
  background: #fff url(../img/top/guide05.webp) no-repeat center 26px/290px auto;
}
#top #section05 .bg06 {
  background: #fff url(../img/top/guide06.webp) no-repeat center 26px/290px auto;
}
#top #section06 {
  padding: 90px 0;
  background: var(--usu_green);
}
#top #section06 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
  margin-bottom: 50px;
}
#top #section06 .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
}
#top #section06 .card h3 {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3636363636;
  letter-spacing: 0.06em;
  color: var(--mc);
  padding: 20px 0 220px;
  margin-bottom: 20px;
  border-radius: 10px 10px 0 0;
}
#top #section06 .card .w_text {
  padding: 0 30px 24px;
  min-height: 235px;
}
#top #section06 .card .w_text span {
  font-weight: bold;
  color: var(--orange);
}
#top #section06 .card .btn02 {
  margin: 0 auto;
}
#top #section06 .bg01 {
  background: #fff url(../img/top/support01.webp) no-repeat center bottom/100% auto;
}
#top #section06 .bg02 {
  background: #fff url(../img/top/support02.webp) no-repeat center bottom/100% auto;
}
#top #section06 .bg03 {
  background: #fff url(../img/top/support03.webp) no-repeat center bottom/100% auto;
}
#top #section06 .bn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
@media (any-hover: hover) {
  #top #section06 .bn a {
    transition: opacity 0.4s ease;
  }
  #top #section06 .bn a:hover {
    opacity: 0.6 !important;
  }
}
#top #section07 {
  padding: 90px 0 100px;
}
#top #section07 .ttl01 .row02 {
  max-width: 950px;
}
#top #section07 p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 1em;
}
#top #section07 ul {
  background: #FCFBF6;
  border: solid 2px #F5F4ED;
  border-radius: 10px;
  padding: 36px 36px 36px 46px;
  font-size: 18px;
  display: grid;
  gap: 10px 0;
  margin-bottom: 10px;
}
#top #section07 ul li {
  position: relative;
  padding-left: 21px;
}
#top #section07 ul li:before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8CB808;
}
#top #section07 .w_text {
  display: grid;
  gap: 40px 0;
  padding-top: 30px;
  background: url(../img/top/sc07_iuchi.webp) no-repeat right 200px bottom/150px auto;
}
#top #section07 .w_text .bold {
  font-weight: bold;
}
#top #section07 .w_text .marker {
  background: linear-gradient(transparent 65%, var(--yellow) 35%);
}
#top #section07 .w_text p {
  margin-bottom: 0;
}
#top #section07 .w_text .orange {
  font-size: 22px;
  color: var(--orange);
  font-weight: bold;
}
#top #section08 {
  background: var(--usu_green);
  padding: 90px 0;
}
#top #section08 .flex {
  display: flex;
  justify-content: space-between;
}
#top #section08 .flex .left {
  width: 705px;
}
#top #section08 .flex .left p {
  margin-bottom: 2em;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.025em;
}
#top #section08 .flex .right {
  width: 300px;
}
#top #section08 .flex .right p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 12px;
  margin-top: 10px;
}
#top #section08 .flex .right .position {
  font-size: 14px;
}
#top #section08 .flex .right .name {
  position: relative;
  top: -1px;
  font-size: 18px;
}
#top #section08 .btn01 {
  width: 350px;
  padding-right: 10px;
  margin-top: 4em;
}
#top #section09 {
  padding: 90px 0;
}
#top #section09 .list01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 40px;
}
#top #section09 .list01 li {
  background: #fff url(../img/top/check.svg) no-repeat 30px center/40px auto;
  border: solid 2px var(--mc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding-left: 86px;
  height: 76px;
  box-shadow: 7px 7px 0 #D7E3CF;
}
#top #section09 .bn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-bottom: 40px;
}
@media (any-hover: hover) {
  #top #section09 .bn a {
    transition: opacity 0.4s ease;
  }
  #top #section09 .bn a:hover {
    opacity: 0.6 !important;
  }
}
#top #section09 .list02 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 30px;
}
#top #section09 .list02 a {
  border: solid 2px var(--mc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  height: 76px;
  box-shadow: 0 7px 0 #D7E3CF;
}
@media (any-hover: hover) {
  #top #section09 .list02 a {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
  }
  #top #section09 .list02 a:hover {
    box-shadow: none;
    transform: translate(0, 7px);
  }
}
#top #section09 .list02 .ic01 {
  background: url(../img/top/sc09_01.svg) no-repeat 21px center/50px auto, url(../img/top/news_arrow.svg) no-repeat right 16px center/9px auto, #fff;
}
#top #section09 .list02 .ic02 {
  background: url(../img/top/sc09_02.svg) no-repeat 21px center/50px auto, url(../img/top/news_arrow.svg) no-repeat right 16px center/9px auto, #fff;
}
#top #section09 .list02 .ic03 {
  background: url(../img/top/sc09_03.svg) no-repeat 31px center/34px auto, url(../img/top/news_arrow.svg) no-repeat right 16px center/9px auto, #fff;
}
#top #section10 {
  background: var(--hada);
  padding: 90px 0;
}
#top #section10 .flex {
  display: flex;
  justify-content: space-between;
}
#top #section10 .left {
  width: 540px;
}
#top #section10 .left .gmap iframe {
  aspect-ratio: 54/39;
}
#top #section10 .right {
  width: 500px;
}
#top #section10 .name {
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}
#top #section10 .by {
  font-size: 14px;
  margin-bottom: 20px;
}
#top #section10 .address {
  margin-bottom: 20px;
}
#top #section10 ul {
  display: flex;
  gap: 0 20px;
  margin-bottom: 70px;
}
#top #section10 ul li {
  display: flex;
  border: solid 2px var(--mc);
  border-radius: 5px;
  align-items: center;
  padding: 0 25px 0 58px;
  height: 42px;
  color: var(--mc);
  font-size: 16px;
  font-weight: 600;
}
#top #section10 ul .car {
  background: #fff url(../img/common/ic_car.svg) no-repeat 25px center/23px auto;
}
#top #section10 ul .train {
  background: #fff url(../img/common/ic_tr.svg) no-repeat 25px center/15px auto;
  padding-left: 48px;
}
#top #section11 {
  padding: 90px 0;
}
#top #section11 .bg {
  border-radius: 14px;
  background: var(--usu_green);
}
#top #section11 ol {
  padding: 40px 70px 20px;
  display: grid;
  gap: 50px 0;
}
#top #section11 li {
  position: relative;
  background: #fff;
  min-height: 260px;
  padding: 30px 30px 30px 265px;
}
#top #section11 li:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  background: url(../img/top/flow_arrow.svg) no-repeat center/100% auto;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -32px;
}
#top #section11 li:nth-child(1) {
  background: #fff url(../img/top/step01.webp) no-repeat 30px 30px/200px auto;
}
#top #section11 li:nth-child(2) {
  background: #fff url(../img/top/step02.webp) no-repeat 30px 30px/200px auto;
}
#top #section11 li:nth-child(3) {
  background: #fff url(../img/top/step03.webp) no-repeat 30px 30px/200px auto;
}
#top #section11 li:nth-child(4) {
  background: #fff url(../img/top/step04.webp) no-repeat 30px 30px/200px auto;
}
#top #section11 li h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--mc);
  margin-bottom: 10px;
}
#top #section11 li .step {
  position: absolute;
  background: var(--orange);
  display: block;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  color: #fff;
  text-align: center;
  top: -5px;
  left: -5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  line-height: 1;
  padding-top: 15px;
}
#top #section11 li .step span {
  font-family: var(--en);
  display: block;
}
#top #section11 li .step span:first-child {
  font-weight: 600;
}
#top #section11 li .step span:last-child {
  font-size: 28px;
  font-weight: 600;
}
#top #section11 li .text {
  line-height: 2;
}
#top #section12 {
  background: var(--hada);
  padding: 90px 0;
}
#top #section12 h2 {
  font-weight: bold;
  color: var(--mc);
  line-height: 1;
  margin-bottom: 50px;
  text-align: center;
}
#top #section12 h2 > span {
  display: block;
}
#top #section12 h2 .row01 {
  font-size: 20px;
  text-align: center;
  background: url(../img/top/dot.svg) repeat-x center/auto 5px;
  margin: 0 auto 30px;
  max-width: 745px;
}
#top #section12 h2 .row01 span {
  background: var(--hada);
  padding: 0 13px;
}
#top #section12 h2 .row02 {
  font-size: 44px;
  letter-spacing: 0.07em;
}
#top #section12 h2 .row02 span {
  color: var(--black);
}
#top #section12 .bg {
  position: relative;
  font-size: 16px;
  line-height: 2;
  padding-top: 20px;
}
#top #section12 .bg:after {
  position: absolute;
  right: -60px;
  top: -20px;
  content: "";
  display: block;
  background: url(../img/top/sc12.webp) no-repeat center/100% auto;
  width: 615px;
  height: auto;
  aspect-ratio: 1230/1006;
}
#top #section12 .bg p {
  margin-bottom: 1.5em;
}
#top #section12 .bg p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
  #mv {
    height: calc(680 / 1240 * 100vw);
  }
  #mv .w_text {
    padding-top: calc(60 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #mv .w_text h2 {
    border-bottom: solid calc(3 / 1240 * 100vw) var(--orange);
    padding-bottom: calc(30 / 1240 * 100vw);
    margin-bottom: calc(15 / 1240 * 100vw);
  }
  #mv .w_text .row01 {
    font-size: calc(22 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #mv .w_text .row01:before, #mv .w_text .row01:after {
    width: calc(86 / 1240 * 100vw);
    height: calc(3 / 1240 * 100vw);
  }
  #mv .w_text .row02 {
    font-size: calc(32 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #mv .w_text .row03 {
    font-size: calc(46 / 1240 * 100vw);
    margin-bottom: calc(15 / 1240 * 100vw);
  }
  #mv .w_text .row03 span {
    font-size: calc(60 / 1240 * 100vw);
  }
  #mv .w_text .row04 {
    font-size: calc(46 / 1240 * 100vw);
  }
  #mv .w_text .row04 span {
    font-size: calc(60 / 1240 * 100vw);
  }
  #mv .w_text p {
    font-size: calc(24 / 1240 * 100vw);
  }
  #mv .icons {
    gap: 0 calc(30 / 1240 * 100vw);
  }
  #mv .icons li {
    width: calc(200 / 1240 * 100vw);
    height: calc(200 / 1240 * 100vw);
    padding-top: calc(34 / 1240 * 100vw);
  }
  #mv .icons .ttl {
    font-size: calc(19 / 1240 * 100vw);
  }
  #mv .icons .ic01 .ttl {
    margin-bottom: calc(10 / 1240 * 100vw);
  }
  #mv .icons .ic01 .num {
    font-size: calc(66 / 1240 * 100vw);
  }
  #mv .icons .ic01 .unit {
    font-size: calc(16 / 1240 * 100vw);
    padding-right: calc(18 / 1240 * 100vw);
    margin-bottom: calc(10 / 1240 * 100vw);
    margin-top: calc(-3 / 1240 * 100vw);
  }
  #mv .icons .ic01 .desc {
    font-size: calc(13 / 1240 * 100vw);
  }
  #mv .icons .ic02 .ttl {
    margin-bottom: calc(10 / 1240 * 100vw);
  }
  #mv .icons .ic02 .num {
    font-size: calc(77 / 1240 * 100vw);
  }
  #mv .icons .ic02 .unit01 {
    font-size: calc(28 / 1240 * 100vw);
    top: calc(-10 / 1240 * 100vw);
    margin-left: calc(-4 / 1240 * 100vw);
  }
  #mv .icons .ic02 .unit02 {
    font-size: calc(24 / 1240 * 100vw);
  }
  #mv .img {
    left: calc(50% - (50 / 1240 * 100vw));
    width: calc(630 / 1240 * 100vw);
    height: calc(542 / 1240 * 100vw);
  }
  #mv .img .name01, #mv .img .name02 {
    width: calc(150 / 1240 * 100vw);
    height: calc(80 / 1240 * 100vw);
    border-radius: calc(5 / 1240 * 100vw);
    box-shadow: 0 0 calc(10 / 1240 * 100vw) rgba(0, 0, 0, 0.1);
  }
  #mv .img .name01 {
    bottom: calc(75 / 1240 * 100vw);
    left: calc(-5 / 1240 * 100vw);
  }
  #mv .img .name02 {
    bottom: calc(95 / 1240 * 100vw);
    right: calc(-20 / 1240 * 100vw);
  }
  #mv .img .position {
    font-size: calc(13 / 1240 * 100vw);
    margin-bottom: calc(8 / 1240 * 100vw);
  }
  #mv .img .name {
    font-size: calc(20 / 1240 * 100vw);
  }
  #top #section01 {
    padding: calc(100 / 1240 * 100vw) 0;
  }
  #top #section01 .w1080:after {
    left: calc(-180 / 1240 * 100vw);
    width: calc(456 / 1240 * 100vw);
    height: calc(606 / 1240 * 100vw);
  }
  #top #section01 .inner {
    width: calc(742 / 1240 * 100vw);
  }
  #top #section01 h2 {
    padding-bottom: calc(40 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
    background: url(../img/top/dot_min.svg) repeat-x left bottom/auto calc(2 / 1240 * 100vw);
  }
  #top #section01 h2 .row01 {
    font-size: calc(30 / 1240 * 100vw);
    background: url(../img/top/dot.svg) repeat-x center/auto calc(5 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
  }
  #top #section01 h2 .row01 span {
    padding: 0 calc(13 / 1240 * 100vw);
  }
  #top #section01 h2 .row02 {
    font-size: calc(50 / 1240 * 100vw);
  }
  #top #section01 .card_list {
    gap: 0 calc(28 / 1240 * 100vw);
    margin-bottom: calc(15 / 1240 * 100vw);
  }
  #top #section01 .card_list .card {
    border: solid calc(2 / 1240 * 100vw) #F5F4ED;
    border-radius: calc(10 / 1240 * 100vw);
    padding: calc(30 / 1240 * 100vw) calc(10 / 1240 * 100vw);
  }
  #top #section01 .card_list .card p {
    font-size: calc(16 / 1240 * 100vw);
    padding-top: calc(94 / 1240 * 100vw);
  }
  #top #section01 .card_list .ic01 {
    background: url(../img/top/sc01_ic01.svg) no-repeat center top/calc(70 / 1240 * 100vw) auto;
  }
  #top #section01 .card_list .ic02 {
    background: url(../img/top/sc01_ic02.svg) no-repeat center top/calc(70 / 1240 * 100vw) auto;
  }
  #top #section01 .card_list .ic03 {
    background: url(../img/top/sc01_ic03.svg) no-repeat center top/calc(70 / 1240 * 100vw) auto;
  }
  #top #section01 .card_list .note {
    font-size: calc(12 / 1240 * 100vw);
    margin-top: calc(5 / 1240 * 100vw);
  }
  #top #section01 .text01 {
    font-size: calc(16 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
  }
  #top #section01 .bottom_card {
    background: var(--usu_green) url(../img/top/sc01_iuchi.webp) no-repeat calc(80 / 1240 * 100vw) bottom/calc(159 / 1240 * 100vw) auto;
    width: calc(910 / 1240 * 100vw);
    height: calc(230 / 1240 * 100vw);
    border-radius: calc(60 / 1240 * 100vw) calc(10 / 1240 * 100vw) calc(10 / 1240 * 100vw) calc(10 / 1240 * 100vw);
    padding: calc(42 / 1240 * 100vw) 0 0 calc(290 / 1240 * 100vw);
  }
  #top #section01 .bottom_card h3 {
    margin-bottom: calc(26 / 1240 * 100vw);
  }
  #top #section01 .bottom_card h3 .row01 {
    font-size: calc(20 / 1240 * 100vw);
    margin-bottom: calc(12 / 1240 * 100vw);
  }
  #top #section01 .bottom_card h3 .row02 {
    font-size: calc(32 / 1240 * 100vw);
    padding-bottom: calc(8 / 1240 * 100vw);
  }
  #top #section01 .bottom_card h3 .row02:after {
    left: calc(-6 / 1240 * 100vw);
    height: calc(10 / 1240 * 100vw);
  }
  #top #section01 .bottom_card p {
    font-size: calc(20 / 1240 * 100vw);
    max-width: calc(542 / 1240 * 100vw);
    padding-top: calc(20 / 1240 * 100vw);
  }
  #top #section01 .bottom_card p span {
    font-size: calc(24 / 1240 * 100vw);
  }
  #top #section02 {
    padding-bottom: calc(95 / 1240 * 100vw);
  }
  #top #section02 .card_list01 {
    gap: calc(30 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
  }
  #top #section02 .card_list01 li {
    border-radius: calc(10 / 1240 * 100vw);
    border: solid calc(2 / 1240 * 100vw) #F5F4ED;
    padding: calc(45 / 1240 * 100vw) calc(26 / 1240 * 100vw);
  }
  #top #section02 .card_list01 li:nth-child(1) {
    background: #FCFBF6 url(../img/top/sc02_c01_01.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(2) {
    background: #FCFBF6 url(../img/top/sc02_c01_02.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(3) {
    background: #FCFBF6 url(../img/top/sc02_c01_03.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(4) {
    background: #FCFBF6 url(../img/top/sc02_c01_04.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(5) {
    background: #FCFBF6 url(../img/top/sc02_c01_05.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(6) {
    background: #FCFBF6 url(../img/top/sc02_c01_06.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(98 / 1240 * 100vw) auto;
  }
  #top #section02 .card_list01 h3 {
    font-size: calc(20 / 1240 * 100vw);
    margin-left: calc(120 / 1240 * 100vw);
    border-bottom: solid calc(2 / 1240 * 100vw) var(--orange);
    padding-bottom: calc(7 / 1240 * 100vw);
    margin-bottom: calc(28 / 1240 * 100vw);
  }
  #top #section02 .w_movie {
    border-radius: calc(15 / 1240 * 100vw);
    border: solid calc(2 / 1240 * 100vw) #F5F4ED;
    padding: calc(80 / 1240 * 100vw) calc(40 / 1240 * 100vw) calc(75 / 1240 * 100vw) calc(35 / 1240 * 100vw);
    margin-bottom: calc(50 / 1240 * 100vw);
  }
  #top #section02 .w_movie .movie {
    width: calc(570 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text {
    width: calc(388 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .bg {
    min-height: calc(106 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .bg p:first-child {
    font-size: calc(28 / 1240 * 100vw);
    margin-bottom: calc(5 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .bg p:last-child .num {
    font-size: calc(87 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .bg p:last-child .unit {
    font-size: calc(33 / 1240 * 100vw);
    margin-left: calc(6 / 1240 * 100vw);
    top: calc(-2 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .text01 {
    font-size: calc(32 / 1240 * 100vw);
    background: url(../img/top/dot_orange.svg) no-repeat center bottom/auto calc(4 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
    padding-bottom: calc(2 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .label {
    width: calc(182 / 1240 * 100vw);
    height: calc(36 / 1240 * 100vw);
    margin: 0 auto calc(28 / 1240 * 100vw);
    border-radius: calc(30 / 1240 * 100vw);
    font-size: calc(16 / 1240 * 100vw);
  }
  #top #section02 .w_movie .w_text .text02 {
    font-size: calc(19 / 1240 * 100vw);
  }
  #top #section02 .w_motto {
    margin-bottom: calc(52 / 1240 * 100vw);
    background: url(../img/top/motto.webp) no-repeat right top/calc(560 / 1240 * 100vw) auto;
    padding-top: calc(40 / 1240 * 100vw);
  }
  #top #section02 .w_motto .text01 {
    font-size: calc(20 / 1240 * 100vw);
    background: url(../img/top/dot_mid.svg) no-repeat left bottom/auto calc(4 / 1240 * 100vw);
    padding-bottom: calc(24 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
    max-width: calc(503 / 1240 * 100vw);
  }
  #top #section02 .w_motto .text02 {
    font-size: calc(34 / 1240 * 100vw);
    margin-bottom: calc(46 / 1240 * 100vw);
  }
  #top #section02 .w_motto ul {
    gap: calc(20 / 1240 * 100vw) calc(40 / 1240 * 100vw);
  }
  #top #section02 .w_motto ul li {
    border: solid calc(2 / 1240 * 100vw) #C5C1A8;
    border-radius: calc(10 / 1240 * 100vw);
    min-height: calc(110 / 1240 * 100vw);
    padding-left: calc(130 / 1240 * 100vw);
  }
  #top #section02 .w_motto ul li:nth-child(1) {
    background: #fff url(../img/top/motto01.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(2) {
    background: #fff url(../img/top/motto02.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(3) {
    background: #fff url(../img/top/motto03.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(4) {
    background: #fff url(../img/top/motto04.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(5) {
    background: #fff url(../img/top/motto05.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(6) {
    background: #fff url(../img/top/motto06.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(7) {
    background: #fff url(../img/top/motto07.webp) no-repeat calc(22 / 1240 * 100vw) center/calc(83 / 1240 * 100vw) auto;
  }
  #top #section02 .w_motto ul p {
    font-size: calc(17 / 1240 * 100vw);
  }
  #top #section02 .bottom_card {
    background: url(../img/top/sc02_iuchi.webp) no-repeat left bottom/calc(235 / 1240 * 100vw) auto, url(../img/top/sc02_bottom.webp) no-repeat right calc(28 / 1240 * 100vw) bottom/calc(78 / 1240 * 100vw) auto, var(--usu_green);
    border-radius: calc(60 / 1240 * 100vw) calc(10 / 1240 * 100vw) calc(10 / 1240 * 100vw) calc(10 / 1240 * 100vw);
    padding: calc(42 / 1240 * 100vw) calc(50 / 1240 * 100vw) calc(35 / 1240 * 100vw) calc(280 / 1240 * 100vw);
  }
  #top #section02 .bottom_card h3 {
    margin-bottom: calc(26 / 1240 * 100vw);
    background: url(../img/top/dot_mid.svg) repeat-x left bottom/auto calc(4 / 1240 * 100vw);
    padding-bottom: calc(25 / 1240 * 100vw);
  }
  #top #section02 .bottom_card h3 .row01 {
    font-size: calc(22 / 1240 * 100vw);
    margin-bottom: calc(12 / 1240 * 100vw);
  }
  #top #section02 .bottom_card h3 .row02 {
    font-size: calc(26 / 1240 * 100vw);
    padding-bottom: calc(8 / 1240 * 100vw);
  }
  #top #section02 .bottom_card h3 .row02 span {
    font-size: calc(32 / 1240 * 100vw);
  }
  #top #section03 {
    padding: calc(80 / 1240 * 100vw) 0 calc(110 / 1240 * 100vw);
  }
  #top #section03 h2 {
    font-size: calc(40 / 1240 * 100vw);
    background: url(../img/top/news_ttl.svg) no-repeat center top/calc(382 / 1240 * 100vw) auto;
    padding-top: calc(55 / 1240 * 100vw);
    margin-bottom: calc(30 / 1240 * 100vw);
  }
  #top #section03 h2 + p {
    padding-bottom: calc(50 / 1240 * 100vw);
    font-size: calc(16 / 1240 * 100vw);
  }
  #top #section03 ul {
    border-radius: calc(10 / 1240 * 100vw);
    box-shadow: 0 calc(3 / 1240 * 100vw) calc(6 / 1240 * 100vw) rgba(0, 0, 0, 0.16);
    padding: calc(10 / 1240 * 100vw) calc(40 / 1240 * 100vw);
    margin-bottom: calc(38 / 1240 * 100vw);
  }
  #top #section03 ul a {
    padding: calc(20 / 1240 * 100vw) calc(40 / 1240 * 100vw) calc(20 / 1240 * 100vw) 0;
    background: url(../img/top/news_arrow.svg) no-repeat right calc(12 / 1240 * 100vw) center/calc(10 / 1240 * 100vw) auto;
  }
  #top #section03 ul .date {
    padding-left: calc(10 / 1240 * 100vw);
    width: calc(150 / 1240 * 100vw);
  }
  #top #section03 ul .text {
    width: calc(100% - (150 / 1240 * 100vw));
  }
  #top #section04 {
    padding: calc(80 / 1240 * 100vw) 0 calc(90 / 1240 * 100vw);
  }
  #top #section04 .card {
    border: solid calc(2 / 1240 * 100vw) #C5C1A8;
    min-height: calc(130 / 1240 * 100vw);
    padding: calc(26 / 1240 * 100vw) calc(30 / 1240 * 100vw) calc(25 / 1240 * 100vw) calc(140 / 1240 * 100vw);
    border-radius: calc(10 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #top #section04 .card h3 {
    margin-bottom: calc(15 / 1240 * 100vw);
  }
  #top #section04 .card h3 a {
    font-size: calc(22 / 1240 * 100vw);
  }
  #top #section04 .card ul {
    gap: calc(5 / 1240 * 100vw) calc(25 / 1240 * 100vw);
  }
  #top #section04 .card ul a {
    padding-left: calc(16 / 1240 * 100vw);
    background: url(../img/top/news_arrow.svg) no-repeat left calc(6 / 1240 * 100vw)/calc(6 / 1240 * 100vw) auto;
  }
  #top #section04 .ic01 {
    background: url(../img/top/case01.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic02 {
    background: url(../img/top/case02.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic03 {
    background: url(../img/top/case03.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic04 {
    background: url(../img/top/case04.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic05 {
    background: url(../img/top/case05.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic06 {
    background: url(../img/top/case06.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic07 {
    background: url(../img/top/case07.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic08 {
    background: url(../img/top/case08.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic09 {
    background: url(../img/top/case09.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic10 {
    background: url(../img/top/case10.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic11 {
    background: url(../img/top/case11.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .ic12 {
    background: url(../img/top/case12.webp) no-repeat calc(22 / 1240 * 100vw) calc(24 / 1240 * 100vw)/calc(83 / 1240 * 100vw) auto;
  }
  #top #section04 .contact_cta {
    margin-top: calc(60 / 1240 * 100vw);
  }
  #top #section05 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section05 .cards {
    gap: calc(35 / 1240 * 100vw) calc(30 / 1240 * 100vw);
  }
  #top #section05 .card {
    border-radius: calc(10 / 1240 * 100vw);
    padding: calc(250 / 1240 * 100vw) calc(15 / 1240 * 100vw) calc(40 / 1240 * 100vw);
    box-shadow: 0 0 calc(12 / 1240 * 100vw) rgba(0, 0, 0, 0.05);
  }
  #top #section05 .card h3 {
    font-size: calc(22 / 1240 * 100vw);
    margin-bottom: calc(12 / 1240 * 100vw);
  }
  #top #section05 .card p {
    margin-bottom: calc(25 / 1240 * 100vw);
  }
  #top #section05 .bg01 {
    background: #fff url(../img/top/guide01.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section05 .bg02 {
    background: #fff url(../img/top/guide02.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section05 .bg03 {
    background: #fff url(../img/top/guide03.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section05 .bg04 {
    background: #fff url(../img/top/guide04.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section05 .bg05 {
    background: #fff url(../img/top/guide05.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section05 .bg06 {
    background: #fff url(../img/top/guide06.webp) no-repeat center calc(26 / 1240 * 100vw)/calc(290 / 1240 * 100vw) auto;
  }
  #top #section06 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section06 .cards {
    gap: 0 calc(30 / 1240 * 100vw);
    margin-bottom: calc(50 / 1240 * 100vw);
  }
  #top #section06 .card {
    border-radius: calc(10 / 1240 * 100vw);
    box-shadow: 0 0 calc(12 / 1240 * 100vw) rgba(0, 0, 0, 0.05);
    padding-bottom: calc(30 / 1240 * 100vw);
  }
  #top #section06 .card h3 {
    font-size: calc(22 / 1240 * 100vw);
    padding: calc(20 / 1240 * 100vw) 0 calc(220 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
    border-radius: calc(10 / 1240 * 100vw) calc(10 / 1240 * 100vw) 0 0;
  }
  #top #section06 .card .w_text {
    padding: 0 calc(30 / 1240 * 100vw) calc(24 / 1240 * 100vw);
    min-height: calc(235 / 1240 * 100vw);
  }
  #top #section06 .bn {
    gap: 0 calc(40 / 1240 * 100vw);
  }
  #top #section07 {
    padding: calc(90 / 1240 * 100vw) 0 calc(100 / 1240 * 100vw);
  }
  #top #section07 .ttl01 .row02 {
    max-width: calc(950 / 1240 * 100vw);
  }
  #top #section07 p {
    font-size: calc(16 / 1240 * 100vw);
  }
  #top #section07 ul {
    border: solid calc(2 / 1240 * 100vw) #F5F4ED;
    border-radius: calc(10 / 1240 * 100vw);
    padding: calc(36 / 1240 * 100vw) calc(36 / 1240 * 100vw) calc(36 / 1240 * 100vw) calc(46 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
    gap: calc(10 / 1240 * 100vw) 0;
    margin-bottom: calc(10 / 1240 * 100vw);
  }
  #top #section07 ul li {
    padding-left: calc(21 / 1240 * 100vw);
  }
  #top #section07 ul li:before {
    top: calc(11 / 1240 * 100vw);
    width: calc(10 / 1240 * 100vw);
    height: calc(10 / 1240 * 100vw);
  }
  #top #section07 .w_text {
    gap: calc(40 / 1240 * 100vw) 0;
    padding-top: calc(30 / 1240 * 100vw);
    background: url(../img/top/sc07_iuchi.webp) no-repeat right calc(200 / 1240 * 100vw) bottom/calc(150 / 1240 * 100vw) auto;
  }
  #top #section07 .w_text .orange {
    font-size: calc(22 / 1240 * 100vw);
  }
  #top #section08 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section08 .flex .left {
    width: calc(705 / 1240 * 100vw);
  }
  #top #section08 .flex .left p {
    font-size: calc(16 / 1240 * 100vw);
  }
  #top #section08 .flex .right {
    width: calc(300 / 1240 * 100vw);
  }
  #top #section08 .flex .right p {
    gap: 0 calc(12 / 1240 * 100vw);
    margin-top: calc(10 / 1240 * 100vw);
  }
  #top #section08 .flex .right .position {
    font-size: calc(14 / 1240 * 100vw);
  }
  #top #section08 .flex .right .name {
    top: calc(-1 / 1240 * 100vw);
    font-size: calc(18 / 1240 * 100vw);
  }
  #top #section08 .btn01 {
    width: calc(350 / 1240 * 100vw);
    padding-right: calc(10 / 1240 * 100vw);
  }
  #top #section09 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section09 .list01 {
    gap: calc(32 / 1240 * 100vw) calc(40 / 1240 * 100vw);
    margin-bottom: calc(40 / 1240 * 100vw);
  }
  #top #section09 .list01 li {
    background: #fff url(../img/top/check.svg) no-repeat calc(30 / 1240 * 100vw) center/calc(40 / 1240 * 100vw) auto;
    border: solid calc(2 / 1240 * 100vw) var(--mc);
    border-radius: calc(10 / 1240 * 100vw);
    font-size: calc(20 / 1240 * 100vw);
    padding-left: calc(86 / 1240 * 100vw);
    height: calc(76 / 1240 * 100vw);
    box-shadow: calc(7 / 1240 * 100vw) calc(7 / 1240 * 100vw) 0 #D7E3CF;
  }
  #top #section09 .bn {
    gap: 0 calc(40 / 1240 * 100vw);
    margin-bottom: calc(40 / 1240 * 100vw);
  }
  #top #section09 .list02 {
    gap: 0 calc(30 / 1240 * 100vw);
  }
  #top #section09 .list02 a {
    border: solid calc(2 / 1240 * 100vw) var(--mc);
    border-radius: calc(10 / 1240 * 100vw);
    font-size: calc(20 / 1240 * 100vw);
    height: calc(76 / 1240 * 100vw);
    box-shadow: 0 calc(7 / 1240 * 100vw) 0 #D7E3CF;
  }
  #top #section09 .list02 .ic01 {
    background: url(../img/top/sc09_01.svg) no-repeat calc(21 / 1240 * 100vw) center/calc(50 / 1240 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(16 / 1240 * 100vw) center/calc(9 / 1240 * 100vw) auto, #fff;
  }
  #top #section09 .list02 .ic02 {
    background: url(../img/top/sc09_02.svg) no-repeat calc(21 / 1240 * 100vw) center/calc(50 / 1240 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(16 / 1240 * 100vw) center/calc(9 / 1240 * 100vw) auto, #fff;
  }
  #top #section09 .list02 .ic03 {
    background: url(../img/top/sc09_03.svg) no-repeat calc(31 / 1240 * 100vw) center/calc(34 / 1240 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(16 / 1240 * 100vw) center/calc(9 / 1240 * 100vw) auto, #fff;
  }
  #top #section10 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section10 .left {
    width: calc(540 / 1240 * 100vw);
  }
  #top #section10 .right {
    width: calc(500 / 1240 * 100vw);
  }
  #top #section10 .name {
    font-size: calc(22 / 1240 * 100vw);
    margin-bottom: calc(5 / 1240 * 100vw);
  }
  #top #section10 .by {
    font-size: calc(14 / 1240 * 100vw);
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #top #section10 .address {
    margin-bottom: calc(20 / 1240 * 100vw);
  }
  #top #section10 ul {
    gap: 0 calc(20 / 1240 * 100vw);
    margin-bottom: calc(70 / 1240 * 100vw);
  }
  #top #section10 ul li {
    border: solid calc(2 / 1240 * 100vw) var(--mc);
    border-radius: calc(5 / 1240 * 100vw);
    padding: 0 calc(25 / 1240 * 100vw) 0 calc(58 / 1240 * 100vw);
    height: calc(42 / 1240 * 100vw);
    font-size: calc(16 / 1240 * 100vw);
  }
  #top #section10 ul .car {
    background: #fff url(../img/common/ic_car.svg) no-repeat calc(25 / 1240 * 100vw) center/calc(23 / 1240 * 100vw) auto;
  }
  #top #section10 ul .train {
    background: #fff url(../img/common/ic_tr.svg) no-repeat calc(25 / 1240 * 100vw) center/calc(15 / 1240 * 100vw) auto;
    padding-left: calc(48 / 1240 * 100vw);
  }
  #top #section11 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section11 .bg {
    border-radius: calc(14 / 1240 * 100vw);
  }
  #top #section11 ol {
    padding: calc(40 / 1240 * 100vw) calc(70 / 1240 * 100vw) calc(20 / 1240 * 100vw);
    gap: calc(50 / 1240 * 100vw) 0;
  }
  #top #section11 li {
    min-height: calc(260 / 1240 * 100vw);
    padding: calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw) calc(265 / 1240 * 100vw);
  }
  #top #section11 li:not(:last-child):after {
    width: calc(28 / 1240 * 100vw);
    height: calc(16 / 1240 * 100vw);
    bottom: calc(-32 / 1240 * 100vw);
  }
  #top #section11 li:nth-child(1) {
    background: #fff url(../img/top/step01.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(200 / 1240 * 100vw) auto;
  }
  #top #section11 li:nth-child(2) {
    background: #fff url(../img/top/step02.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(200 / 1240 * 100vw) auto;
  }
  #top #section11 li:nth-child(3) {
    background: #fff url(../img/top/step03.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(200 / 1240 * 100vw) auto;
  }
  #top #section11 li:nth-child(4) {
    background: #fff url(../img/top/step04.webp) no-repeat calc(30 / 1240 * 100vw) calc(30 / 1240 * 100vw)/calc(200 / 1240 * 100vw) auto;
  }
  #top #section11 li h3 {
    font-size: calc(18 / 1240 * 100vw);
    margin-bottom: calc(10 / 1240 * 100vw);
  }
  #top #section11 li .step {
    width: calc(70 / 1240 * 100vw);
    height: calc(70 / 1240 * 100vw);
    top: calc(-5 / 1240 * 100vw);
    left: calc(-5 / 1240 * 100vw);
    box-shadow: 0 0 calc(6 / 1240 * 100vw) rgba(0, 0, 0, 0.16);
    padding-top: calc(15 / 1240 * 100vw);
  }
  #top #section11 li .step span:last-child {
    font-size: calc(28 / 1240 * 100vw);
  }
  #top #section12 {
    padding: calc(90 / 1240 * 100vw) 0;
  }
  #top #section12 h2 {
    margin-bottom: calc(50 / 1240 * 100vw);
  }
  #top #section12 h2 .row01 {
    font-size: calc(20 / 1240 * 100vw);
    background: url(../img/top/dot.svg) repeat-x center/auto calc(5 / 1240 * 100vw);
    margin: 0 auto calc(30 / 1240 * 100vw);
    max-width: calc(745 / 1240 * 100vw);
  }
  #top #section12 h2 .row01 span {
    padding: 0 calc(13 / 1240 * 100vw);
  }
  #top #section12 h2 .row02 {
    font-size: calc(44 / 1240 * 100vw);
  }
  #top #section12 .bg {
    font-size: calc(16 / 1240 * 100vw);
    padding-top: calc(20 / 1240 * 100vw);
  }
  #top #section12 .bg:after {
    right: calc(-60 / 1240 * 100vw);
    top: calc(-20 / 1240 * 100vw);
    width: calc(615 / 1240 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #mv {
    position: relative;
    height: auto;
    background: url(../img/top/mv.webp) no-repeat center left/cover;
    padding-bottom: calc(80 / 390 * 100vw);
  }
  #mv .w_text, #mv .icons {
    position: relative;
    z-index: 3;
  }
  #mv .w_text {
    padding-top: calc(36 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
  #mv .w_text h2 {
    letter-spacing: 0.1em;
    max-width: 100%;
    border-bottom: solid calc(2 / 390 * 100vw) var(--orange);
    padding-bottom: calc(25 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  #mv .w_text h2 > span {
    display: block;
  }
  #mv .w_text .row01 {
    color: var(--orange);
    font-size: calc(16 / 390 * 100vw);
    text-align: center;
    position: relative;
    margin-bottom: calc(20 / 390 * 100vw);
    letter-spacing: 0;
  }
  #mv .w_text .row01:before, #mv .w_text .row01:after {
    width: calc(40 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
  #mv .w_text .row01:before {
    left: 0;
  }
  #mv .w_text .row01:after {
    right: 0;
  }
  #mv .w_text .row02 {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0;
    margin-bottom: calc(10 / 390 * 100vw);
    white-space: nowrap;
  }
  #mv .w_text .row03, #mv .w_text .row04 {
    letter-spacing: 0.12em;
  }
  #mv .w_text .row03 {
    font-size: calc(24 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  #mv .w_text .row03 span {
    font-size: calc(36 / 390 * 100vw);
  }
  #mv .w_text .row04 {
    font-size: calc(24 / 390 * 100vw);
  }
  #mv .w_text .row04 span {
    font-size: calc(36 / 390 * 100vw);
  }
  #mv .w_text p {
    font-size: calc(17 / 390 * 100vw);
    letter-spacing: 0.03em;
  }
  #mv .icons {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    line-height: 1;
    color: #fff;
    gap: 0;
    width: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
  }
  #mv .icons li {
    width: auto;
    border-radius: 0;
    background: var(--mc) url(../img/top/sp_mv.svg) no-repeat center/cover;
    padding-top: calc(10 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
  }
  #mv .icons li:first-child {
    border-right: solid 1px rgba(255, 255, 255, 0.5);
  }
  #mv .icons .ttl {
    font-size: calc(13 / 390 * 100vw);
  }
  #mv .icons .num {
    font-weight: bold;
    font-family: var(--en);
    letter-spacing: 0;
  }
  #mv .icons .ic01 .ttl {
    margin-bottom: calc(6 / 390 * 100vw);
  }
  #mv .icons .ic01 .num {
    font-size: calc(30 / 390 * 100vw);
    text-align: center;
    display: inline-block;
    margin-left: calc(35 / 390 * 100vw);
  }
  #mv .icons .ic01 .unit {
    font-size: calc(16 / 390 * 100vw);
    padding-right: calc(18 / 390 * 100vw);
    margin-bottom: calc(6 / 390 * 100vw);
    margin-top: calc(-3 / 390 * 100vw);
    display: inline-block;
  }
  #mv .icons .ic01 .desc {
    font-size: calc(11 / 390 * 100vw);
  }
  #mv .icons .ic02 .ttl {
    margin-bottom: calc(6 / 390 * 100vw);
  }
  #mv .icons .ic02 .w_num {
    display: inline-block;
    padding-left: calc(40 / 390 * 100vw);
  }
  #mv .icons .ic02 .num {
    font-size: calc(40 / 390 * 100vw);
    padding-left: calc(5 / 390 * 100vw);
    display: inline-block;
  }
  #mv .icons .ic02 .unit01 {
    display: inline-block;
    font-size: calc(18 / 390 * 100vw);
    position: relative;
    top: revert;
    letter-spacing: 0;
    margin-left: calc(-4 / 390 * 100vw);
  }
  #mv .icons .ic02 .unit02 {
    font-weight: 900;
    font-size: calc(16 / 390 * 100vw);
    text-align: center;
    display: inline-block;
  }
  #mv .img {
    left: revert;
    bottom: 0;
    position: relative;
    width: calc(100% - (40 / 390 * 100vw));
    height: auto;
    aspect-ratio: 630/542;
    background: url(../img/top/mv_human.webp) no-repeat center/cover;
    margin: 0 auto;
  }
  #mv .img .name01, #mv .img .name02 {
    position: absolute;
    width: calc(120 / 390 * 100vw);
    height: calc(56 / 390 * 100vw);
    border-radius: calc(5 / 390 * 100vw);
    box-shadow: 0 0 calc(10 / 390 * 100vw) rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
  }
  #mv .img .name01 {
    bottom: calc(75 / 390 * 100vw);
    left: calc(-5 / 390 * 100vw);
  }
  #mv .img .name02 {
    bottom: calc(95 / 390 * 100vw);
    right: calc(-5 / 390 * 100vw);
  }
  #mv .img .position {
    font-size: calc(11 / 390 * 100vw);
    margin-bottom: calc(6 / 390 * 100vw);
  }
  #mv .img .name {
    font-size: calc(14 / 390 * 100vw);
  }
  #top #section01 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section01 .w1080 {
    position: relative;
  }
  #top #section01 .w1080:after {
    content: none;
  }
  #top #section01 .inner {
    width: 100%;
    margin-left: auto;
  }
  #top #section01 h2 {
    font-weight: bold;
    color: var(--mc);
    line-height: 1;
    padding-bottom: calc(20 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
    background: url(../img/top/dot_min.svg) repeat-x left bottom/auto calc(2 / 390 * 100vw);
  }
  #top #section01 h2 > span {
    display: block;
  }
  #top #section01 h2 .row01 {
    font-size: calc(18 / 390 * 100vw);
    text-align: center;
    background: url(../img/top/dot.svg) repeat-x center/auto calc(3 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  #top #section01 h2 .row01 span {
    padding: 0 calc(8 / 390 * 100vw);
  }
  #top #section01 h2 .row02 {
    font-size: calc(24 / 390 * 100vw);
    text-align: center;
  }
  #top #section01 h2 .row02 span {
    color: var(--black);
  }
  #top #section01 .card_list {
    gap: calc(10 / 390 * 100vw);
    grid-template-columns: 1fr;
    margin-bottom: calc(25 / 390 * 100vw);
    padding-top: calc(220 / 390 * 100vw);
    background: url(../img/top/sc01.webp) no-repeat center top/calc(200 / 390 * 100vw) auto;
  }
  #top #section01 .card_list .card {
    background: #FCFBF6;
    border: solid calc(2 / 390 * 100vw) #F5F4ED;
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  #top #section01 .card_list .card p {
    text-align: left;
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.025em;
    padding-top: 0;
    padding-left: calc(100 / 390 * 100vw);
  }
  #top #section01 .card_list .card p span {
    color: var(--orange);
    font-weight: bold;
  }
  #top #section01 .card_list .ic01 {
    background: url(../img/top/sc01_ic01.svg) no-repeat calc(15 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section01 .card_list .ic02 {
    background: url(../img/top/sc01_ic02.svg) no-repeat calc(15 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section01 .card_list .ic03 {
    background: url(../img/top/sc01_ic03.svg) no-repeat calc(15 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section01 .card_list .note {
    font-size: calc(12 / 390 * 100vw);
    letter-spacing: 0;
    margin-top: calc(5 / 390 * 100vw);
    text-align: right;
  }
  #top #section01 .text01 {
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.625;
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section01 .bottom_card {
    background: var(--usu_green) url(../img/top/sc01_iuchi.webp) no-repeat center bottom/calc(120 / 390 * 100vw) auto;
    width: 100%;
    height: auto;
    border-radius: calc(30 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    margin-left: revert;
    padding: calc(30 / 390 * 100vw) calc(25 / 390 * 100vw) calc(180 / 390 * 100vw);
    line-height: 1;
  }
  #top #section01 .bottom_card h3 {
    margin-bottom: calc(15 / 390 * 100vw);
  }
  #top #section01 .bottom_card h3 > span {
    font-weight: bold;
    display: block;
  }
  #top #section01 .bottom_card h3 .row01 {
    font-size: calc(15 / 390 * 100vw);
    margin-bottom: calc(6 / 390 * 100vw);
    line-height: 1.6;
  }
  #top #section01 .bottom_card h3 .row02 {
    position: relative;
    color: var(--mc);
    font-size: calc(24 / 390 * 100vw);
    max-width: fit-content;
    padding-bottom: calc(6 / 390 * 100vw);
    text-align: left;
    line-height: 1.5;
  }
  #top #section01 .bottom_card h3 .row02 span {
    position: relative;
    z-index: 2;
    background: linear-gradient(transparent 80%, var(--yellow) 20%);
  }
  #top #section01 .bottom_card h3 .row02:after {
    content: none;
  }
  #top #section01 .bottom_card p {
    font-size: calc(13 / 390 * 100vw);
    font-weight: bold;
    border-top: dashed 1px #8CB808;
    max-width: calc(542 / 390 * 100vw);
    padding-top: calc(20 / 390 * 100vw);
  }
  #top #section01 .bottom_card p span {
    font-size: calc(16 / 390 * 100vw);
    color: var(--mc);
  }
  #top #section02 {
    padding-bottom: calc(60 / 390 * 100vw);
  }
  #top #section02 .card_list01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section02 .card_list01 li {
    border-radius: calc(10 / 390 * 100vw);
    background: #FCFBF6;
    border: solid calc(2 / 390 * 100vw) #F5F4ED;
    padding: calc(35 / 390 * 100vw) calc(26 / 390 * 100vw);
  }
  #top #section02 .card_list01 li:nth-child(1) {
    background: #FCFBF6 url(../img/top/sc02_c01_01.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(2) {
    background: #FCFBF6 url(../img/top/sc02_c01_02.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(3) {
    background: #FCFBF6 url(../img/top/sc02_c01_03.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(4) {
    background: #FCFBF6 url(../img/top/sc02_c01_04.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(5) {
    background: #FCFBF6 url(../img/top/sc02_c01_05.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 li:nth-child(6) {
    background: #FCFBF6 url(../img/top/sc02_c01_06.webp) no-repeat calc(30 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(98 / 390 * 100vw) auto;
  }
  #top #section02 .card_list01 h3 {
    font-size: calc(20 / 390 * 100vw);
    margin-left: calc(120 / 390 * 100vw);
    border-bottom: solid calc(2 / 390 * 100vw) var(--orange);
    letter-spacing: 0.1em;
    padding-bottom: calc(7 / 390 * 100vw);
    margin-bottom: calc(28 / 390 * 100vw);
  }
  #top #section02 .card_list01 p {
    letter-spacing: 0.025em;
  }
  #top #section02 .w_movie {
    border-radius: calc(15 / 390 * 100vw);
    border: solid calc(2 / 390 * 100vw) #F5F4ED;
    display: grid;
    justify-content: space-between;
    align-items: center;
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    margin-bottom: calc(50 / 390 * 100vw);
  }
  #top #section02 .w_movie .movie {
    width: 100%;
  }
  #top #section02 .w_movie .movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  #top #section02 .w_movie .w_text {
    width: 100%;
  }
  #top #section02 .w_movie .w_text .bg {
    background: url(../img/top/movie_bg.svg) no-repeat center top/90% auto;
    min-height: 0;
    text-align: center;
    line-height: 1;
  }
  #top #section02 .w_movie .w_text .bg p:first-child {
    font-weight: bold;
    color: var(--mc);
    font-size: calc(18 / 390 * 100vw);
    margin-bottom: calc(5 / 390 * 100vw);
  }
  #top #section02 .w_movie .w_text .bg p:last-child {
    font-weight: bold;
  }
  #top #section02 .w_movie .w_text .bg p:last-child .num {
    font-size: calc(50 / 390 * 100vw);
    color: var(--orange);
    letter-spacing: -0.025em;
    font-family: var(--en);
  }
  #top #section02 .w_movie .w_text .bg p:last-child .unit {
    font-size: calc(28 / 390 * 100vw);
    letter-spacing: 0;
    margin-left: calc(6 / 390 * 100vw);
    position: relative;
    top: calc(-2 / 390 * 100vw);
  }
  #top #section02 .w_movie .w_text .text01 {
    color: var(--orange);
    text-align: center;
    font-weight: bold;
    font-size: calc(22 / 390 * 100vw);
    background: url(../img/top/dot_orange.svg) no-repeat center bottom/auto calc(3 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
    padding-bottom: calc(5 / 390 * 100vw);
  }
  #top #section02 .w_movie .w_text .label {
    width: calc(170 / 390 * 100vw);
    height: calc(34 / 390 * 100vw);
    margin: 0 auto calc(28 / 390 * 100vw);
    border-radius: calc(30 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
  #top #section02 .w_movie .w_text .text02 {
    font-size: calc(18 / 390 * 100vw);
    text-align: center;
    line-height: 1.6;
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section02 .w_motto {
    margin-bottom: calc(30 / 390 * 100vw);
    background: url(../img/top/motto.webp) no-repeat center calc(210 / 390 * 100vw)/calc(300 / 390 * 100vw) auto;
    padding-top: 0;
  }
  #top #section02 .w_motto .text01 {
    font-size: calc(16 / 390 * 100vw);
    line-height: 1.8;
    background: url(../img/top/dot_mid.svg) no-repeat left bottom/auto calc(3 / 390 * 100vw);
    padding-bottom: calc(20 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
    max-width: calc(503 / 390 * 100vw);
  }
  #top #section02 .w_motto .text01 span {
    font-weight: bold;
    color: var(--orange);
  }
  #top #section02 .w_motto .text02 {
    font-weight: bold;
    font-size: calc(23 / 390 * 100vw);
    line-height: 1.4705882353;
    margin-bottom: calc(245 / 390 * 100vw);
    white-space: nowrap;
  }
  #top #section02 .w_motto ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw) 0;
  }
  #top #section02 .w_motto ul li {
    border: solid calc(2 / 390 * 100vw) #C5C1A8;
    border-radius: calc(10 / 390 * 100vw);
    min-height: calc(110 / 390 * 100vw);
    display: flex;
    align-items: center;
    padding-left: calc(90 / 390 * 100vw);
    padding-right: calc(15 / 390 * 100vw);
  }
  #top #section02 .w_motto ul li:nth-child(1) {
    background: #fff url(../img/top/motto01.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(2) {
    background: #fff url(../img/top/motto02.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(3) {
    background: #fff url(../img/top/motto03.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(4) {
    background: #fff url(../img/top/motto04.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(5) {
    background: #fff url(../img/top/motto05.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(6) {
    background: #fff url(../img/top/motto06.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul li:nth-child(7) {
    background: #fff url(../img/top/motto07.webp) no-repeat calc(16 / 390 * 100vw) center/calc(60 / 390 * 100vw) auto;
  }
  #top #section02 .w_motto ul p {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.5;
    letter-spacing: 0;
  }
  #top #section02 .w_motto ul p br {
    display: none;
  }
  #top #section02 .w_motto ul p span {
    color: var(--orange);
    font-weight: bold;
  }
  #top #section02 .bottom_card {
    position: relative;
    z-index: 2;
    background: url(../img/top/sc02_iuchi.webp) no-repeat left bottom/calc(180 / 390 * 100vw) auto, url(../img/top/sc02_bottom.webp) no-repeat right calc(28 / 390 * 100vw) bottom/calc(50 / 390 * 100vw) auto, var(--usu_green);
    width: 100%;
    height: auto;
    border-radius: calc(30 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) calc(10 / 390 * 100vw);
    margin-left: revert;
    padding: calc(30 / 390 * 100vw) calc(25 / 390 * 100vw) calc(200 / 390 * 100vw);
    line-height: 1;
  }
  #top #section02 .bottom_card h3 {
    letter-spacing: 0.025em;
    background: url(../img/top/dot_mid.svg) repeat-x left bottom/auto calc(3 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
    padding-bottom: calc(15 / 390 * 100vw);
  }
  #top #section02 .bottom_card h3 > span {
    font-weight: bold;
    display: block;
  }
  #top #section02 .bottom_card h3 .row01 {
    font-size: calc(18 / 390 * 100vw);
    margin-bottom: calc(12 / 390 * 100vw);
  }
  #top #section02 .bottom_card h3 .row02 {
    position: relative;
    font-size: calc(18 / 390 * 100vw);
    max-width: fit-content;
    padding-bottom: calc(8 / 390 * 100vw);
    line-height: 1.5;
  }
  #top #section02 .bottom_card h3 .row02 span {
    font-size: calc(26 / 390 * 100vw);
    position: relative;
    z-index: 2;
    color: var(--mc);
  }
  #top #section02 .bottom_card p {
    line-height: 1.7333333333;
  }
  #top #section02 .bottom_card p span {
    font-weight: bold;
    color: var(--orange);
  }
  #top #section03 {
    padding: calc(60 / 390 * 100vw) 0;
    background: #FCFBF6 url(../img/top/sc03_bg.webp) no-repeat left bottom/calc(800 / 390 * 100vw) auto;
  }
  #top #section03 h2 {
    font-size: calc(26 / 390 * 100vw);
    text-align: center;
    background: url(../img/top/news_ttl.svg) no-repeat center top/calc(300 / 390 * 100vw) auto;
    padding-top: calc(40 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section03 h2 + p {
    text-align: center;
    padding-bottom: calc(30 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
  }
  #top #section03 ul {
    background: #fff;
    border-radius: calc(8 / 390 * 100vw);
    box-shadow: 0 calc(3 / 390 * 100vw) calc(6 / 390 * 100vw) rgba(0, 0, 0, 0.16);
    padding: calc(6 / 390 * 100vw) calc(20 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section03 ul li:not(:last-child) {
    border-bottom: dashed 1px #ccc;
  }
  #top #section03 ul a {
    display: block;
    padding: calc(15 / 390 * 100vw) calc(25 / 390 * 100vw) calc(15 / 390 * 100vw) 0;
    background: url(../img/top/news_arrow.svg) no-repeat right calc(3 / 390 * 100vw) center/calc(5 / 390 * 100vw) auto;
  }
  #top #section03 ul .date {
    padding-left: 0;
    width: 100%;
    display: block;
    margin-bottom: calc(4 / 390 * 100vw);
  }
  #top #section03 ul .text {
    display: block;
    width: 100%;
    line-height: 1.4;
  }
  #top #section03 .btn01 {
    margin: 0 auto;
  }
  #top #section04 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section04 .card {
    border: solid calc(2 / 390 * 100vw) #C5C1A8;
    min-height: 0;
    padding: calc(25 / 390 * 100vw) calc(20 / 390 * 100vw);
    border-radius: calc(8 / 390 * 100vw);
    margin-bottom: calc(15 / 390 * 100vw);
  }
  #top #section04 .card h3 {
    color: var(--mc);
    margin-bottom: calc(20 / 390 * 100vw);
    padding-left: calc(65 / 390 * 100vw);
  }
  #top #section04 .card h3 a {
    font-size: calc(18 / 390 * 100vw);
  }
  #top #section04 .card ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(5 / 390 * 100vw) calc(25 / 390 * 100vw);
    letter-spacing: 0;
  }
  #top #section04 .card ul a {
    text-decoration: underline;
    padding-left: calc(16 / 390 * 100vw);
    background: url(../img/top/news_arrow.svg) no-repeat left calc(6 / 390 * 100vw)/calc(6 / 390 * 100vw) auto;
  }
  #top #section04 .ic01 {
    background: url(../img/top/case01.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic02 {
    background: url(../img/top/case02.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic03 {
    background: url(../img/top/case03.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic04 {
    background: url(../img/top/case04.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic05 {
    background: url(../img/top/case05.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic06 {
    background: url(../img/top/case06.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic07 {
    background: url(../img/top/case07.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic08 {
    background: url(../img/top/case08.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic09 {
    background: url(../img/top/case09.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic10 {
    background: url(../img/top/case10.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic11 {
    background: url(../img/top/case11.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .ic12 {
    background: url(../img/top/case12.webp) no-repeat calc(20 / 390 * 100vw) calc(16 / 390 * 100vw)/calc(48 / 390 * 100vw) auto;
  }
  #top #section04 .contact_cta {
    margin-top: calc(30 / 390 * 100vw);
  }
  #top #section05 {
    background: var(--hada);
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section05 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: calc(15 / 390 * 100vw) 0;
  }
  #top #section05 .card {
    background: #fff;
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(250 / 390 * 100vw) calc(15 / 390 * 100vw) calc(40 / 390 * 100vw);
    box-shadow: 0 0 calc(12 / 390 * 100vw) rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  #top #section05 .card h3 {
    line-height: 1;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.12em;
    font-size: calc(22 / 390 * 100vw);
    color: var(--mc);
    margin-bottom: calc(12 / 390 * 100vw);
  }
  #top #section05 .card p {
    line-height: 2;
    margin-bottom: calc(25 / 390 * 100vw);
  }
  #top #section05 .card .btn02 {
    margin: 0 auto;
  }
  #top #section05 .bg01 {
    background: #fff url(../img/top/guide01.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section05 .bg02 {
    background: #fff url(../img/top/guide02.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section05 .bg03 {
    background: #fff url(../img/top/guide03.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section05 .bg04 {
    background: #fff url(../img/top/guide04.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section05 .bg05 {
    background: #fff url(../img/top/guide05.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section05 .bg06 {
    background: #fff url(../img/top/guide06.webp) no-repeat center calc(26 / 390 * 100vw)/calc(290 / 390 * 100vw) auto;
  }
  #top #section06 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section06 .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section06 .card {
    background: #fff;
    border-radius: calc(10 / 390 * 100vw);
    box-shadow: 0 0 calc(12 / 390 * 100vw) rgba(0, 0, 0, 0.05);
    padding-bottom: calc(30 / 390 * 100vw);
  }
  #top #section06 .card h3 {
    text-align: center;
    font-weight: bold;
    font-size: calc(22 / 390 * 100vw);
    line-height: 1.3636363636;
    letter-spacing: 0.06em;
    color: var(--mc);
    padding: calc(20 / 390 * 100vw) 0 calc(220 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw) calc(10 / 390 * 100vw) 0 0;
  }
  #top #section06 .card .w_text {
    padding: 0 calc(30 / 390 * 100vw) calc(24 / 390 * 100vw);
    min-height: 0;
  }
  #top #section06 .bg01 {
    background: #fff url(../img/top/support01.webp) no-repeat center bottom/100% auto;
  }
  #top #section06 .bg02 {
    background: #fff url(../img/top/support02.webp) no-repeat center bottom/100% auto;
  }
  #top #section06 .bg03 {
    background: #fff url(../img/top/support03.webp) no-repeat center bottom/100% auto;
  }
  #top #section06 .bn {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw);
  }
  #top #section07 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section07 .ttl01 {
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section07 .ttl01 .row02 {
    font-size: calc(23 / 390 * 100vw);
    background-position: calc(11 / 390 * 100vw) center;
  }
  #top #section07 p {
    font-size: calc(14 / 390 * 100vw);
    line-height: 2;
    margin-bottom: 1em;
  }
  #top #section07 ul {
    background: #FCFBF6;
    border: solid calc(2 / 390 * 100vw) #F5F4ED;
    border-radius: calc(10 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    display: grid;
    gap: calc(10 / 390 * 100vw) 0;
    margin-bottom: calc(10 / 390 * 100vw);
  }
  #top #section07 ul li {
    position: relative;
    padding-left: calc(16 / 390 * 100vw);
    line-height: 1.5;
  }
  #top #section07 ul li:before {
    top: calc(8 / 390 * 100vw);
    left: 0;
    width: calc(6 / 390 * 100vw);
    height: calc(6 / 390 * 100vw);
    border-radius: 50%;
  }
  #top #section07 .w_text {
    display: grid;
    gap: calc(20 / 390 * 100vw) 0;
    padding-top: calc(10 / 390 * 100vw);
    background: url(../img/top/sc07_iuchi.webp) no-repeat right bottom/calc(100 / 390 * 100vw) auto;
    padding-bottom: calc(40 / 390 * 100vw);
  }
  #top #section07 .w_text .bold {
    font-weight: bold;
  }
  #top #section07 .w_text .marker {
    background: linear-gradient(transparent 65%, var(--yellow) 35%);
  }
  #top #section07 .w_text p {
    margin-bottom: 0;
  }
  #top #section07 .w_text p:nth-child(3) {
    padding-right: calc(120 / 390 * 100vw);
  }
  #top #section07 .w_text .orange {
    font-size: calc(18 / 390 * 100vw);
    color: var(--orange);
    font-weight: bold;
    padding-right: calc(100 / 390 * 100vw);
    line-height: 1.6;
  }
  #top #section08 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section08 .flex {
    position: relative;
    display: block;
    padding-bottom: calc(100 / 390 * 100vw);
  }
  #top #section08 .flex .left {
    width: 100%;
  }
  #top #section08 .flex .left p {
    margin-bottom: 2em;
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.8;
    letter-spacing: 0.025em;
  }
  #top #section08 .flex .btn01 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
  }
  #top #section08 .flex .right {
    width: 100%;
  }
  #top #section08 .flex .right p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 calc(12 / 390 * 100vw);
    margin-top: calc(10 / 390 * 100vw);
  }
  #top #section08 .flex .right figure {
    width: calc(280 / 390 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  #top #section08 .flex .right .position {
    font-size: calc(14 / 390 * 100vw);
  }
  #top #section08 .flex .right .name {
    position: relative;
    top: calc(-1 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  #top #section08 .btn01 {
    width: calc(340 / 390 * 100vw);
    padding-right: calc(10 / 390 * 100vw);
    margin-top: 4em;
  }
  #top #section09 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section09 .list01 {
    grid-template-columns: 1fr;
    gap: calc(20 / 390 * 100vw);
    margin-bottom: calc(40 / 390 * 100vw);
  }
  #top #section09 .list01 li {
    background: #fff url(../img/top/check.svg) no-repeat calc(15 / 390 * 100vw) center/calc(26 / 390 * 100vw) auto;
    border: solid calc(2 / 390 * 100vw) var(--mc);
    border-radius: calc(8 / 390 * 100vw);
    display: flex;
    align-items: center;
    font-size: calc(15 / 390 * 100vw);
    font-weight: bold;
    padding-left: calc(50 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    box-shadow: calc(5 / 390 * 100vw) calc(5 / 390 * 100vw) 0 #D7E3CF;
  }
  #top #section09 .bn {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #top #section09 .bn a {
    transition: opacity 0.4s ease;
  }
  #top #section09 .bn a:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 767px) {
  #top #section09 .list02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(15 / 390 * 100vw);
  }
  #top #section09 .list02 a {
    border: solid calc(2 / 390 * 100vw) var(--mc);
    border-radius: calc(8 / 390 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(16 / 390 * 100vw);
    font-weight: bold;
    height: calc(60 / 390 * 100vw);
    box-shadow: 0 calc(5 / 390 * 100vw) 0 #D7E3CF;
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  #top #section09 .list02 a {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
  }
  #top #section09 .list02 a:hover {
    box-shadow: none;
    transform: translate(0, calc(7 / 390 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  #top #section09 .list02 .ic01 {
    background: url(../img/top/sc09_01.svg) no-repeat calc(21 / 390 * 100vw) center/calc(40 / 390 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(13 / 390 * 100vw) center/calc(7 / 390 * 100vw) auto, #fff;
  }
  #top #section09 .list02 .ic02 {
    background: url(../img/top/sc09_02.svg) no-repeat calc(21 / 390 * 100vw) center/calc(40 / 390 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(13 / 390 * 100vw) center/calc(7 / 390 * 100vw) auto, #fff;
  }
  #top #section09 .list02 .ic03 {
    background: url(../img/top/sc09_03.svg) no-repeat calc(31 / 390 * 100vw) center/calc(28 / 390 * 100vw) auto, url(../img/top/news_arrow.svg) no-repeat right calc(13 / 390 * 100vw) center/calc(7 / 390 * 100vw) auto, #fff;
  }
  #top #section10 {
    background: var(--hada);
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section10 .ttl02 {
    margin-bottom: calc(35 / 390 * 100vw);
  }
  #top #section10 .flex {
    display: block;
  }
  #top #section10 .left {
    width: 100%;
    margin-bottom: calc(20 / 390 * 100vw);
  }
  #top #section10 .left .gmap iframe {
    aspect-ratio: 54/39;
  }
  #top #section10 .right {
    width: 100%;
  }
  #top #section10 .name {
    font-weight: bold;
    font-size: calc(18 / 390 * 100vw);
    line-height: 1;
    margin-bottom: calc(5 / 390 * 100vw);
  }
  #top #section10 .by {
    font-size: calc(12 / 390 * 100vw);
    margin-bottom: calc(20 / 390 * 100vw);
  }
  #top #section10 .address {
    margin-bottom: calc(20 / 390 * 100vw);
    letter-spacing: 0;
  }
  #top #section10 ul {
    display: flex;
    gap: 0 calc(10 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
  #top #section10 ul li {
    display: flex;
    border: solid calc(2 / 390 * 100vw) var(--mc);
    border-radius: calc(5 / 390 * 100vw);
    align-items: center;
    padding: 0 calc(10 / 390 * 100vw) calc(2 / 390 * 100vw) calc(40 / 390 * 100vw);
    height: calc(42 / 390 * 100vw);
    color: var(--mc);
    font-size: calc(14 / 390 * 100vw);
    font-weight: 600;
  }
  #top #section10 ul .car {
    background: #fff url(../img/common/ic_car.svg) no-repeat calc(12 / 390 * 100vw) center/calc(20 / 390 * 100vw) auto;
  }
  #top #section10 ul .train {
    background: #fff url(../img/common/ic_tr.svg) no-repeat calc(12 / 390 * 100vw) center/calc(16 / 390 * 100vw) auto;
    padding-left: calc(36 / 390 * 100vw);
  }
  #top #section10 .btn01 {
    margin: 0 auto;
  }
  #top #section11 {
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section11 .bg {
    border-radius: calc(8 / 390 * 100vw);
    background: var(--usu_green);
  }
  #top #section11 ol {
    padding: calc(20 / 390 * 100vw);
    display: grid;
    gap: calc(50 / 390 * 100vw) 0;
  }
  #top #section11 li {
    position: relative;
    background: #fff;
    min-height: calc(260 / 390 * 100vw);
    padding: calc(15 / 390 * 100vw);
  }
  #top #section11 li:not(:last-child):after {
    position: absolute;
    content: "";
    display: block;
    width: calc(20 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
    background: url(../img/top/flow_arrow.svg) no-repeat center/100% auto;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: calc(-32 / 390 * 100vw);
  }
  #top #section11 li:nth-child(1) {
    background: #fff url(../img/top/step01.webp) no-repeat calc(15 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(80 / 390 * 100vw) auto;
  }
  #top #section11 li:nth-child(2) {
    background: #fff url(../img/top/step02.webp) no-repeat calc(15 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(80 / 390 * 100vw) auto;
  }
  #top #section11 li:nth-child(3) {
    background: #fff url(../img/top/step03.webp) no-repeat calc(15 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(80 / 390 * 100vw) auto;
  }
  #top #section11 li:nth-child(4) {
    background: #fff url(../img/top/step04.webp) no-repeat calc(15 / 390 * 100vw) calc(15 / 390 * 100vw)/calc(80 / 390 * 100vw) auto;
  }
  #top #section11 li h3 {
    font-size: calc(18 / 390 * 100vw);
    font-weight: bold;
    color: var(--mc);
    margin-bottom: calc(10 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
    padding-left: calc(98 / 390 * 100vw);
    display: flex;
    align-items: center;
    line-height: 1.6;
  }
  #top #section11 li .step {
    position: absolute;
    background: var(--orange);
    display: block;
    border-radius: 50%;
    width: calc(70 / 390 * 100vw);
    height: calc(70 / 390 * 100vw);
    color: #fff;
    text-align: center;
    top: calc(-25 / 390 * 100vw);
    left: calc(-25 / 390 * 100vw);
    box-shadow: 0 0 calc(6 / 390 * 100vw) rgba(0, 0, 0, 0.16);
    line-height: 1;
    padding-top: calc(15 / 390 * 100vw);
    transform: scale(0.8);
  }
  #top #section11 li .step span {
    font-family: var(--en);
    display: block;
  }
  #top #section11 li .step span:first-child {
    font-weight: 600;
  }
  #top #section11 li .step span:last-child {
    font-size: calc(28 / 390 * 100vw);
    font-weight: 600;
  }
  #top #section11 li .text {
    line-height: 1.8;
  }
  #top #section12 {
    background: var(--hada);
    padding: calc(60 / 390 * 100vw) 0;
  }
  #top #section12 h2 {
    font-weight: bold;
    color: var(--mc);
    line-height: 1;
    margin-bottom: calc(30 / 390 * 100vw);
    text-align: center;
  }
  #top #section12 h2 > span {
    display: block;
  }
  #top #section12 h2 .row01 {
    font-size: calc(14 / 390 * 100vw);
    text-align: center;
    background: url(../img/top/dot.svg) repeat-x center/auto calc(3 / 390 * 100vw);
    margin: 0 auto calc(15 / 390 * 100vw);
    max-width: calc(745 / 390 * 100vw);
  }
  #top #section12 h2 .row01 span {
    background: var(--hada);
    padding: 0 calc(10 / 390 * 100vw);
  }
  #top #section12 h2 .row02 {
    font-size: calc(20 / 390 * 100vw);
    letter-spacing: 0.07em;
  }
  #top #section12 h2 .row02 span {
    color: var(--black);
  }
  #top #section12 .bg {
    padding-bottom: calc(300 / 390 * 100vw);
    position: relative;
    font-size: calc(16 / 390 * 100vw);
    line-height: 2;
    padding-top: 0;
    background: url(../img/top/sc12.webp) no-repeat center bottom/calc(350 / 390 * 100vw);
  }
  #top #section12 .bg:after {
    content: none;
  }
  #top #section12 .bg p {
    font-size: calc(14 / 390 * 100vw);
    margin-bottom: 1.5em;
  }
  #top #section12 .bg p:last-child {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=style.css.map */
