@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* ======================================
reset.css
====================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colors to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* ======================================
common
====================================== */
* {
  margin: 0px;
  padding: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 56px;
}
@media (min-width:769px) {
  html {
    scroll-padding-top: 118px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  background-color: #50525a;
}
body.fix {
  overflow: hidden;
}
@media (min-width:769px) {
  body.fix {
    overflow: auto;
  }
}

a {
  text-decoration: none;
  outline: none;
  color: #323232;
}
a:hover {
  cursor: default;
}
a[href^="tel:"] {
  cursor: default;
}
@media (min-width:769px) {
  a[href] {
    transition: all 0.3s;
  }
  a[href]:hover {
    cursor: pointer;
  }
  a[href^="tel:"] {
    text-decoration: none;
  }
  a[href^="tel:"]:hover {
    cursor: default;
  }
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

ul,
dl,
ol {
  text-indent: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* ======================================
common id & class
====================================== */
/* #wrapper */
#wrapper {
  text-align: left;
  color: #323232;
  animation: fadeInPage 0.5s ease 0.5s 1 normal forwards;
  opacity: 0;
  background-color: #fff;
  overflow: clip;
}
@keyframes fadeInPage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width:769px) {
  #wrapper {
    min-width: 1240px;
  }
}

.eng {
  font-family: "Montserrat", sans-serif;
}

/* .pc.sp */
.pc {
  display: none !important;
}
.pc.ilb {
  display: none !important;
}
.pc.flex {
  display: none !important;
}

.sp {
  display: block !important;
}
.sp.ilb {
  display: inline-block !important;
}
.sp.flex {
  display: flex !important;
}

@media (min-width:769px) {
  .pc {
    display: block !important;
  }
  .pc.ilb {
    display: inline-block !important;
  }
  .pc.flex {
    display: flex !important;
  }
  .sp {
    display: none !important;
  }
  .sp.ilb {
    display: none !important;
  }
  .sp.flex {
    display: none !important;
  }
}
/* .inner */
.inner {
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}
@media (min-width:769px) {
  .inner {
    width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (min-width:1440px) {
  .inner {
    width: 86.2vw;
    min-width: 1240px;
    max-width: 1600px;
  }
}

/* ======================================
#header
====================================== */
#header {
  height: 56px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
#header.active {
  background-color: white;
}
@media (min-width:769px) {
  #header {
    height: 118px;
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
}
#header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width:769px) {
  #header .inner {
    width: 100%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: space-between;
    position: relative;
  }
}
#header .inner .logo img {
  width: 140px;
  transition: all 0.3s;
}
@media (min-width:769px) {
  #header .inner .logo img {
    width: 170px;
  }
}
@media (min-width: 1301px) {
  #header .inner .logo img {
    width: 200px;
  }
}
#header .inner .nav_global {
  width: 100%;
  padding: 30px 30px 24px;
  display: none;
  background-color: #fff;
  position: fixed;
  overflow: auto;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
@media (min-width:769px) {
  #header .inner .nav_global {
    width: auto;
    height: 100%;
    padding: 0;
    position: static;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
  }
}
#header .inner .nav_global .nav {
  border-top: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav {
    height: 100%;
    display: flex;
    gap: 0 18px;
    border-top: none;
    transition: all 0.3s;
  }
}
@media (min-width: 1301px) {
  #header .inner .nav_global .nav {
    gap: 0 24px;
  }
}
@media (min-width:1440px) {
  #header .inner .nav_global .nav {
    gap: 0 36px;
  }
}
#header .inner .nav_global .nav > li {
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li {
    border-bottom: none;
  }
}
#header .inner .nav_global .nav > li > a {
  height: 60px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
#header .inner .nav_global .nav > li > a .eng {
  margin-left: 1em;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #00a9e3;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li > a {
    height: 100%;
    padding: 0;
    text-align: center;
    flex-direction: column;
    place-content: center;
  }
  #header .inner .nav_global .nav > li > a .eng {
    margin-left: 0;
    margin-top: 10px;
    display: block;
    color: #323232;
    transition: all 0.3s;
  }
  #header .inner .nav_global .nav > li > a:hover {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li > a:hover .eng {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li > a.current {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li > a.current .eng {
    color: #00a9e3;
  }
}
#header .inner .nav_global .nav > li:has(.nav_sub) {
  position: relative;
}
#header .inner .nav_global .nav > li:has(.nav_sub) > a {
  width: calc(100% - 48px);
  position: relative;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li:has(.nav_sub) > a {
    width: auto !important;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 7px solid #323232;
    border-bottom: 0;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a.active {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a.active .eng {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a.active::before {
    transform: translateX(-50%) rotate(-180deg);
    transform-origin: 50% 50%;
    border-top-color: #00a9e3;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a:hover::before {
    border-top-color: #00a9e3;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a.current::before {
    border-top-color: #00a9e3;
  }
}
#header .inner .nav_global .nav > li:has(.nav_sub) .icn {
  width: 48px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
#header .inner .nav_global .nav > li:has(.nav_sub) .icn::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #323232;
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 8px);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
#header .inner .nav_global .nav > li:has(.nav_sub) .icn::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #323232;
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 8px);
  transform: translate(-50%, -50%);
}
#header .inner .nav_global .nav > li:has(.nav_sub) .icn.active::after {
  opacity: 0;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li:has(.nav_sub) {
    position: static;
  }
  #header .inner .nav_global .nav > li:has(.nav_sub) > a {
    width: auto;
  }
}
#header .inner .nav_global .nav > li .nav_sub {
  display: none;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li .nav_sub {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
    position: absolute;
    top: 118px;
    left: 0;
    background-color: rgba(50, 50, 50, 0.9);
  }
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li .nav_sub .list {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
  }
  #header .inner .nav_global .nav > li .nav_sub .list.hasimg {
    margin-top: 18px;
    padding-top: 24px;
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  #header .inner .nav_global .nav > li .nav_sub .list.hasimg > li {
    width: 320px;
  }
}
#header .inner .nav_global .nav > li .nav_sub .list > li {
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
#header .inner .nav_global .nav > li .nav_sub .list > li > a {
  padding: 20px 10px 20px 32px;
  display: block;
  background-color: #f5f5f5;
  position: relative;
}
#header .inner .nav_global .nav > li .nav_sub .list > li > a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #c8c8c8;
  display: block;
  position: absolute;
  top: 50%;
  left: 12px;
  transition: all 0.3s;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li .nav_sub .list > li > a::before {
    display: none;
  }
}
#header .inner .nav_global .nav > li .nav_sub .list > li:last-child {
  border-bottom: none;
}
@media (min-width:769px) {
  #header .inner .nav_global .nav > li .nav_sub .list > li {
    font-size: 1.5rem;
    font-weight: 600px;
    border-bottom: none;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a {
    padding: 0;
    color: #fff;
    background-color: transparent;
    display: inline-block;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a:hover {
    color: #00a9e3;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a:hover span.img img {
    transform: scale(1.1);
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a:hover span.ttl::before {
    border-left-color: #00a9e3;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span {
    display: block;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span.img {
    width: 320px;
    height: 192px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span.img img {
    width: 100%;
    aspect-ratio: 1.6666666667;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span.ttl {
    padding-left: 16px;
    position: relative;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span.ttl::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #fff;
    border-right: 0;
    position: absolute;
    left: 0;
    top: 4px;
    transition: all 0.3s;
  }
  #header .inner .nav_global .nav > li .nav_sub .list > li a span.txt {
    margin-top: 0.75em;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7142857143;
  }
}
#header .inner .nav_global .contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media (min-width:769px) {
  #header .inner .nav_global .contact {
    margin-top: 0;
    margin-left: 28px;
    order: 1;
  }
}
@media (min-width:1440px) {
  #header .inner .nav_global .contact {
    margin-left: 28px;
  }
}
#header .inner .nav_global .contact li a {
  height: 53px;
  color: #00a9e3;
  border: 1px solid #00a9e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width:769px) {
  #header .inner .nav_global .contact li a {
    width: clamp(120px, 10vw, 160px);
    height: 58px;
  }
}
@media (min-width:1440px) {
  #header .inner .nav_global .contact li a {
    width: 160px;
  }
}
#header .inner .nav_global .contact li a[target=_blank]::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../images/icn_link.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: invert(43%) sepia(83%) saturate(918%) hue-rotate(160deg) brightness(97%) contrast(105%);
  position: absolute;
  right: 7px;
  top: 7px;
}
#header .inner .nav_global .contact li a:hover {
  color: #fff;
  background-color: #00a9e3;
}
#header .inner .nav_global .contact li a:hover::after {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
#header .inner .nav_global .contact li a span {
  display: block;
}
#header .inner .nav_global .contact li a span.txt {
  font-size: 1.4rem;
  font-weight: 500;
}
#header .inner .nav_global .contact li a span.txt.number {
  font-size: 1.6rem;
}
@media (min-width:769px) {
  #header .inner .nav_global .contact li a span.txt.number {
    font-size: 1.5rem;
  }
}
#header .inner .nav_global .contact li a span.eng {
  margin-top: 5px;
  font-size: 1.2rem;
}
#header .inner .nav_global .sns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
}
@media (min-width:769px) {
  #header .inner .nav_global .sns {
    height: 50px;
    margin-top: 0;
    margin-left: 28px;
    padding-left: 28px;
    border-left: 1px solid #323232;
    gap: 0 1vw;
    transition: all 0.3s;
  }
}
@media (min-width:1440px) {
  #header .inner .nav_global .sns {
    margin-left: 36px;
    padding-left: 28px;
    gap: 0 18px;
  }
}
#header .inner .nav_global .sns li a img {
  width: 30px;
  height: 30px;
  filter: invert(17%) sepia(0%) saturate(358%) hue-rotate(230deg) brightness(100%) contrast(91%);
}
@media (min-width:769px) {
  #header .inner .nav_global .sns li a img {
    transition: all 0.3s;
  }
  #header .inner .nav_global .sns li a:hover img {
    filter: invert(43%) sepia(83%) saturate(918%) hue-rotate(160deg) brightness(97%) contrast(105%);
  }
}
#header .inner .nav_global .copy {
  margin-top: 22px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
}
#header .inner .nav_btn {
  width: 56px;
  height: 56px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width:769px) {
  #header .inner .nav_btn {
    display: none;
  }
}
#header .inner .nav_btn .menu-trigger {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 56px;
  margin-left: 13px;
}
#header .inner .nav_btn .menu-trigger span {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
#header .inner .nav_btn .menu-trigger span:nth-of-type(1) {
  top: 22px;
}
#header .inner .nav_btn .menu-trigger span:nth-of-type(2) {
  top: 28px;
}
#header .inner .nav_btn .menu-trigger span:nth-of-type(3) {
  bottom: 21px;
}
#header .inner .nav_btn .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-25deg);
}
#header .inner .nav_btn .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#header .inner .nav_btn .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(25deg);
}

/* ======================================
トップページ
====================================== */
.loading {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  display: grid;
  place-content: center;
  background-color: #fff;
}
.loading img {
  width: 180px;
}
@media (min-width:769px) {
  .loading img {
    width: 234px;
  }
}
.loading img {
  animation: fadeInLoading 1.5s ease 1s 1 normal forwards;
  opacity: 0;
}
@keyframes fadeInLoading {
  0% {
    margin-bottom: -20px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero {
  margin-top: -56px;
  height: 100svh;
  position: relative;
}
@media (min-width:769px) {
  .hero {
    height: calc(var(--vh, 1vh) * 100);
    margin-top: -118px;
  }
}
.hero .swiper.swiper_top .swiper-slide img {
  width: 100vw;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width:769px) {
  .hero .swiper.swiper_top .swiper-slide img {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.075);
  }
}
.hero .swiper_top .swiper-slide-active .swiper-img,
.hero .swiper_top .swiper-slide-duplicate-active .swiper-img,
.hero .swiper_top .swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}
.hero .swiper_top .swiper-slide img {
  height: auto;
  width: 100%;
}
.hero .swiper.swiper_news {
  width: calc(100vw - 48px);
  height: 65px;
  font-size: 2rem;
  border-radius: 100vmax;
  position: absolute;
  bottom: 25px;
  left: 24px;
  background-color: #fff;
  z-index: 10;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news {
    width: 566px;
    height: 55px;
  }
}
.hero .swiper.swiper_news .swiper-wrapper .swiper-slide {
  width: calc(100% - 60px);
  margin-right: 60px;
  padding-left: 30px;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news .swiper-wrapper .swiper-slide {
    width: calc(100% - 70px);
    margin-right: 70px;
    font-size: 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .hero .swiper.swiper_news .swiper-wrapper .swiper-slide:hover {
    color: #00a9e3;
  }
}
.hero .swiper.swiper_news .swiper-wrapper .swiper-slide .txt {
  margin-top: 0.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news .swiper-wrapper .swiper-slide .txt {
    margin-top: 0;
    margin-left: 1em;
  }
}
.hero .swiper.swiper_news .swiper-button-next,
.hero .swiper.swiper_news .swiper-button-prev {
  height: 11px;
  width: 11px;
  color: #323232;
  margin: inherit;
  left: inherit;
  right: inherit;
  position: absolute;
  z-index: 10;
}
.hero .swiper.swiper_news .swiper-button-next {
  right: 22px;
  bottom: 15px;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news .swiper-button-next {
    right: 32px;
    bottom: 9px;
  }
}
.hero .swiper.swiper_news .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #bcbcbc;
  position: absolute;
  top: -7px;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news .swiper-button-next::after {
    width: 30px;
    top: -7px;
  }
}
.hero .swiper.swiper_news .swiper-button-prev {
  right: 22px;
  top: 15px;
}
@media (min-width:769px) {
  .hero .swiper.swiper_news .swiper-button-prev {
    right: 32px;
    top: 9px;
  }
}
.hero .copy {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 10;
  display: grid;
  place-content: center;
  place-items: center;
  font-weight: 500;
}
@media (min-width:769px) {
  .hero .copy {
    padding-top: 118px;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.hero .copy .eng {
  font-size: 3.3rem;
  font-family: myfont;
}
@media (min-width:769px) {
  .hero .copy .eng {
    font-size: clamp(5rem, 3.472vw, 6.5rem);
  }
}
.hero .copy .tag {
  margin-top: 0.7em;
  font-size: 1.6rem;
}
@media (min-width:769px) {
  .hero .copy .tag {
    margin-top: 1em;
    font-size: clamp(2rem, 1.389vw, 2.6rem);
  }
}

@font-face {
  font-family: myfont; /* フォントに名前を付ける */
  src: url("../fonts/SuisseIntl-Bold.ttf") format("opentype"); /* フォントのURLを指定する */
}
/* ======================================
コンテンツページ 共通
====================================== */
/* .breadcrumb */
.breadcrumb {
  padding: 16px 30px 0;
}
@media (min-width:769px) {
  .breadcrumb {
    height: 40px;
    margin-bottom: -40px;
    padding: inherit;
    padding-top: 22px;
  }
}
.breadcrumb ul {
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  overflow-x: scroll;
  scrollbar-width: none;
}
.breadcrumb ul::-webkit-scrollbar {
  display: none;
}
@media (min-width:769px) {
  .breadcrumb ul {
    height: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 70px;
    padding-right: 70px;
  }
}
.breadcrumb ul li {
  font-size: 1.3rem;
  white-space: nowrap;
}
@media (min-width:769px) {
  .breadcrumb ul li {
    font-size: 1.4rem;
  }
}
.breadcrumb ul li + li {
  margin-left: 8px;
  display: flex;
  align-items: center;
}
.breadcrumb ul li + li::before {
  content: "/";
  margin-right: 8px;
}
.breadcrumb ul li a {
  padding-top: 2px;
  padding-bottom: 2px;
  display: block;
  text-decoration: underline;
}
@media (min-width:769px) {
  .breadcrumb ul li a:hover {
    color: #00a9e3;
  }
}

/* .ttl_category */
.ttl_category {
  width: 100%;
  height: 44vw;
  position: relative;
}
@media (min-width:769px) {
  .ttl_category {
    height: 289px;
  }
}
.ttl_category .txt {
  width: 100%;
  height: 44vw;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
}
@media (min-width:769px) {
  .ttl_category .txt {
    height: 289px;
  }
}
.ttl_category .txt .ttl {
  font-size: 2.2rem;
  font-weight: 500;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
@media (min-width:769px) {
  .ttl_category .txt .ttl {
    font-size: 3.6rem;
  }
}
.ttl_category .txt .ttl .eng {
  margin-top: 0.9em;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  display: block;
}
@media (min-width:769px) {
  .ttl_category .txt .ttl .eng {
    margin-top: 1.3em;
    font-size: 1.6rem;
  }
}
.ttl_category .img {
  width: 100%;
  height: 44vw;
  overflow: hidden;
}
@media (min-width:769px) {
  .ttl_category .img {
    height: 289px;
  }
}
.ttl_category .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* .lead */
.lead_section {
  margin-bottom: 30px;
}
@media (min-width:769px) {
  .lead_section {
    margin-bottom: 55px;
    text-align: center;
  }
}

/* .ttl_main */
#main .ttl_main {
  margin-bottom: 60px;
}
@media (min-width:769px) {
  #main .ttl_main {
    margin-bottom: 120px;
    width: 1240px;
  }
}
#main .ttl_main .ttl {
  margin-bottom: 1.1em;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
}
@media (min-width:769px) {
  #main .ttl_main .ttl {
    margin-bottom: 1.3em;
    font-size: 2.8rem;
    line-height: 1.8;
  }
}

/* ======================================
#main
====================================== */
#main {
  padding-top: 50px;
  padding-bottom: 60px;
  display: block;
}
@media (min-width:769px) {
  #main {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
#main a {
  text-decoration: underline;
}
@media (min-width:769px) {
  #main a:hover {
    color: #00a9e3;
  }
}
#main p {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
@media (min-width:769px) {
  #main p {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
#main h1,
#main h2,
#main h3,
#main h4,
#main h5,
#main h6 {
  font-weight: 500;
  line-height: 1.6;
}
#main .btn {
  margin: 25px 0 0 !important;
}
@media (min-width:769px) {
  #main .btn {
    margin: 40px 0 0 !important;
    display: grid;
    place-content: center;
  }
}
#main .btn a,
#main .btn button,
#main .btn .btn_link {
  width: 100%;
  height: 45px;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #00a9e3;
  color: #00a9e3;
  text-decoration: none;
  position: relative;
}
#main .btn a::before,
#main .btn button::before,
#main .btn .btn_link::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #00a9e3;
  border-right: 0;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
#main .btn.prev a::before, #main .btn.prev button::before, #main .btn.prev .btn_link::before {
  transform: translateY(-50%) rotate(180deg);
}

@media (min-width:769px) {
  #main .btn.next a::before, #main .btn.next button::before, #main .btn.next .btn_link::before {
    left: inherit;
    right: 20px;
  }
}

#main .btn a[target=_blank]::after,
#main .btn button[target=_blank]::after,
#main .btn .btn_link[target=_blank]::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../images/icn_link.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: invert(43%) sepia(83%) saturate(918%) hue-rotate(160deg) brightness(97%) contrast(105%);
  position: absolute;
  right: 7px;
  top: 7px;
}
@media (min-width:769px) {
  #main .btn a,
  #main .btn button,
  #main .btn .btn_link {
    width: 280px;
    height: 55px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  #main .btn a:hover,
  #main .btn button:hover,
  #main .btn .btn_link:hover {
    color: #fff;
    background-color: #00a9e3;
  }
  #main .btn a:hover::before,
  #main .btn button:hover::before,
  #main .btn .btn_link:hover::before {
    border-left-color: #fff;
  }
  #main .btn a:hover::after,
  #main .btn button:hover::after,
  #main .btn .btn_link:hover::after {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
}
#main p.att {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  padding-left: 1.2em;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  position: relative;
}
#main p.att + .att {
  margin-top: 0.5em !important;
}
@media (min-width:769px) {
  #main p.att {
    margin-top: 1.2em;
    font-size: 1.4rem;
  }
}
#main p.att::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
#main .section + .section {
  margin-top: 60px;
}
@media (min-width:769px) {
  #main .section + .section {
    margin-top: 120px;
  }
}
#main .section .ttl_section {
  margin-bottom: 24px;
  font-size: 2rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .ttl_section {
    margin-bottom: 60px;
    font-size: 2.8rem;
  }
}
#main .section .ttl_section .eng {
  margin-top: 0.5em;
  font-size: 1.2rem;
  color: #00a9e3;
  display: block;
}
@media (min-width:769px) {
  #main .section .ttl_section .eng {
    font-size: 1.5rem;
  }
}
#main .section .ttl_section.top {
  font-size: 2.2rem;
  text-align: left;
}
@media (min-width:769px) {
  #main .section .ttl_section.top {
    margin-bottom: 50px;
    font-size: 3rem;
    text-align: center;
  }
}
#main .section .ttl_section.large {
  margin-top: -15px;
  margin-bottom: 35px;
  font-size: 2.2rem;
}
@media (min-width:769px) {
  #main .section .ttl_section.large {
    margin-bottom: 80px;
    font-size: 3.6rem;
  }
  #main .section .ttl_section.large .eng {
    font-size: 1.6rem;
  }
}
#main .section .ttl_section.small {
  margin-bottom: 19px;
  font-size: 1.8rem;
}
#main .section .ttl_section.small .eng {
  margin-top: 0.3em;
}
@media (min-width:769px) {
  #main .section .ttl_section.small {
    margin-bottom: 26px;
    font-size: 2.4rem;
  }
  #main .section .ttl_section.small .eng {
    font-size: 1.4rem;
  }
}
#main .section .column_01 {
  display: flex;
  flex-direction: column;
}
@media (min-width:769px) {
  #main .section .column_01 {
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
  }
  #main .section .column_01.rvs {
    flex-direction: row-reverse;
  }
}
#main .section .column_01 .txt {
  display: contents;
}
@media (min-width:769px) {
  #main .section .column_01 .txt {
    flex: 1;
    min-width: 620px;
    margin-left: auto;
    margin-right: 0;
    padding-right: 50px;
    display: block;
  }
  #main .section .column_01.rvs .txt {
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 50px;
  }
}
#main .section .column_01 .txt p + * {
  margin-top: 1.2em;
}
#main .section .column_01 .txt .list_column_01 {
  padding-top: 5px;
  padding-left: 1.2em;
}
#main .section .column_01 .txt .list_column_01 + * {
  margin-top: 1.2em;
}
#main .section .column_01 .txt .list_column_01 li {
  font-size: 1.4rem;
  line-height: 1.6;
}
#main .section .column_01 .txt .list_column_01 li + li {
  margin-top: 0.3em;
}
#main .section .column_01 .txt .list_column_01 li::before {
  content: "・";
  margin-left: -1em;
}
@media (min-width:769px) {
  #main .section .column_01 .txt .list_column_01 li {
    font-size: 1.6rem;
  }
}
#main .section .column_01 .txt .ttl {
  margin-bottom: 0.9em;
  font-size: 1.8em;
}
#main .section .column_01.top .txt .ttl {
  order: -2;
  font-size: 2.2rem;
}

#main .section .column_01.price .txt .ttl {
  order: -2;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .column_01.price .txt .ttl {
    text-align: left;
  }
}

@media (min-width:769px) {
  #main .section .column_01 .txt .ttl {
    font-size: 2.4rem;
  }
  #main .section .column_01.top .txt .ttl {
    order: inherit;
    font-size: 2.4rem;
    font-size: 3rem;
  }
}
#main .section .column_01 .img {
  margin-bottom: 25px;
  margin-right: -30px;
  order: -1;
}
#main .section .column_01.rvs .img {
  margin-right: 0;
  margin-left: -30px;
}

@media (min-width:769px) {
  #main .section .column_01 .img {
    order: inherit;
    width: 45vw;
    min-width: 558px;
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    display: block;
  }
  #main .section .column_01 .img .wrap {
    max-width: 720px;
    overflow: hidden;
    display: block;
  }
  #main .section .column_01.rvs .img {
    margin-right: 0;
    margin-left: calc(50% - 50vw);
    text-align: right;
  }
  #main .section .column_01.rvs .img .wrap {
    margin-left: auto;
  }
}
#main .section .column_01 .img img {
  width: 100%;
  aspect-ratio: 345/256;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width:769px) {
  #main .section .column_01 .img img {
    max-width: 720px;
    aspect-ratio: 648/510;
  }
  #main .section .column_01.price .img img {
    aspect-ratio: 648/500;
  }
}
#main .section .column_02 {
  background-color: #f5f5f5;
}
@media (min-width:769px) {
  #main .section .column_02 {
    width: 100%;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
#main .section .column_02 .img {
  margin-left: -30px;
  margin-right: -30px;
}
@media (min-width:769px) {
  #main .section .column_02 .img {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
  #main .section .column_02 .img .wrap {
    max-width: 800px;
    margin-left: auto;
    overflow: hidden;
    display: block;
  }
  #main .section .column_02 .img .wrap img {
    width: 100%;
    height: 68.267vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width:769px) and (min-width:769px) {
  #main .section .column_02 .img .wrap img {
    height: auto;
    aspect-ratio: 720/510;
  }
}
#main .section .column_02 .txt {
  padding-top: 25px;
  padding-bottom: 30px;
}
@media (min-width:769px) {
  #main .section .column_02 .txt {
    width: 50%;
  }
  #main .section .column_02 .txt .wrap {
    max-width: 800px;
    padding-left: 70px;
    padding-right: 80px;
  }
}
#main .section .column_02 .txt .ttl {
  margin-bottom: 1em;
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #main .section .column_02 .txt .ttl {
    font-size: 2.6rem;
    margin-bottom: 0.9em;
  }
}
#main .section .column_03 .cts {
  display: flex;
  flex-direction: column;
}
@media (min-width:769px) {
  #main .section .column_03 .cts {
    flex-direction: row-reverse;
  }
}
#main .section .column_03 .cts + .cts {
  margin-top: 40px;
}
@media (min-width:769px) {
  #main .section .column_03 .cts + .cts {
    margin-top: 80px;
  }
}
#main .section .column_03 .cts .txt {
  display: contents;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt {
    flex: 1;
    display: block;
  }
}
#main .section .column_03 .cts .txt .ttl {
  margin-bottom: 1em;
  order: -1;
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt .ttl {
    text-align: left;
    font-size: 2.4rem;
  }
}
#main .section .column_03 .cts .txt .ttl .note {
  font-size: 0.75em; /* お好みで調整 */
  padding-left: 8px;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt .ttl .note {
    text-align: left;
    font-size: 0.75em;
    padding-left: 8px;
  }
}
#main .section .column_03 .cts .txt .menu {
  margin-bottom: 18px;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt .menu {
    margin-bottom: 25px;
  }
}
#main .section .column_03 .cts .txt .menu .box {
  padding-left: 13px;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-left: 2px solid #c8c8c8;
}
#main .section .column_03 .cts .txt .menu .box .ttl_sub {
  font-size: 1.2rem;
  margin-bottom: 0.45em;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt .menu .box .ttl_sub {
    font-size: 1.4rem;
  }
}
#main .section .column_03 .cts .txt .menu .box .list > li {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  padding-left: 1.1em;
}
#main .section .column_03 .cts .txt .menu .box .list > li + li {
  margin-top: 0.2em;
}
#main .section .column_03 .cts .txt .menu .box .list > li::before {
  content: "・";
  margin-left: -1.2em;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .txt .menu .box .list > li {
    font-size: 1.4rem;
  }
}
#main .section .column_03 .cts .img {
  margin-bottom: 20px;
}
@media (min-width:769px) {
  #main .section .column_03 .cts .img {
    width: 525px;
    margin-left: 50px;
    margin-bottom: 0;
  }
}
@media (min-width:1440px) {
  #main .section .column_03 .cts .img {
    width: 36.5vw;
    max-width: 677px;
  }
}
#main .section .column_03 .cts .img img {
  aspect-ratio: 315/256;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .section .column_04 {
  margin-top: -30px;
}
@media (min-width:769px) {
  #main .section .column_04 {
    margin-top: -40px;
  }
}
#main .section .column_04 .cts {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #c8c8c8;
}
#main .section .column_04 .cts:first-child {
  border-top: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #main .section .column_04 .cts {
    padding: 60px 0;
    flex-direction: row-reverse;
  }
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt {
    flex: 1;
    display: block;
  }
}
#main .section .column_04 .cts .txt .tag {
  margin-bottom: 0.7em;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .tag {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
}
#main .section .column_04 .cts .txt .name {
  margin-bottom: 1.3em;
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .name {
    font-size: 2.4rem;
  }
}
#main .section .column_04 .cts .txt .name .eng {
  margin-left: 1em;
  font-size: 1.2rem;
  color: #00a9e3;
  display: inline-block;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .name .eng {
    font-size: 1.4rem;
  }
}
#main .section .column_04 .cts .txt .menu {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .menu {
    margin-bottom: 25px;
  }
}
#main .section .column_04 .cts .txt .menu .box {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10px;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  border-left: 2px solid #c8c8c8;
}
#main .section .column_04 .cts .txt .menu .box .ttl_sub {
  font-size: 1.2rem;
  margin-bottom: 0.45em;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .menu .box .ttl_sub {
    font-size: 1.4rem;
  }
}
#main .section .column_04 .cts .txt .menu .box .list > li {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
  padding-left: 1.1em;
}
#main .section .column_04 .cts .txt .menu .box .list > li + li {
  margin-top: 0.2em;
}
#main .section .column_04 .cts .txt .menu .box .list > li::before {
  content: "・";
  margin-left: -1.2em;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .menu .box .list > li {
    font-size: 1.4rem;
  }
}
#main .section .column_04 .cts .txt p + p {
  margin-top: 0.8em;
}
#main .section .column_04 .cts .txt .history {
  margin-top: 15px;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .history {
    margin-top: 25px;
  }
}
#main .section .column_04 .cts .txt .history .ttl_sub {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  display: flex;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .history .ttl_sub {
    margin-bottom: 0.7em;
  }
}
#main .section .column_04 .cts .txt .history .ttl_sub::before {
  content: "[";
  margin-right: 0.3em;
  margin-top: -1px;
}
#main .section .column_04 .cts .txt .history .ttl_sub::after {
  content: "]";
  margin-left: 0.3em;
  margin-top: -1px;
}
#main .section .column_04 .cts .txt .history .list > li {
  display: flex;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .history .list > li {
    font-size: 1.4rem;
  }
}
#main .section .column_04 .cts .txt .history .list > li + li {
  margin-top: 0.3em;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .history .list > li + li {
    margin-top: 0.4em;
  }
}
#main .section .column_04 .cts .txt .history .list > li span {
  display: block;
}
#main .section .column_04 .cts .txt .history .list > li span.year {
  width: 4em;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .txt .history .list > li span.year {
    width: 5em;
  }
}
#main .section .column_04 .cts .txt .history .list > li span.cts {
  flex: 1;
}
#main .section .column_04 .cts .img {
  margin-bottom: 20px;
}
@media (min-width:769px) {
  #main .section .column_04 .cts .img {
    width: 500px;
    margin-left: 50px;
    margin-bottom: 0;
  }
}
@media (min-width:1440px) {
  #main .section .column_04 .cts .img {
    width: 35vw;
    max-width: 645px;
  }
}
#main .section .column_04 .cts .img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .section .list_treatmant {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media (min-width:769px) {
  #main .section .list_treatmant {
    flex-direction: row;
    gap: 0 40px;
  }
}
#main .section .list_treatmant li {
  border: 1px solid #c8c8c8;
}
#main .section .list_treatmant li a {
  text-decoration: none;
}
#main .section .list_treatmant li a .img img {
  width: 100%;
  aspect-ratio: 315/150;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width:769px) {
  #main .section .list_treatmant li a .img {
    overflow: hidden;
  }
  #main .section .list_treatmant li a .img img {
    transition: all 0.3s;
    aspect-ratio: 525/265;
  }
}
#main .section .list_treatmant li a .txt {
  padding: 20px 25px 25px;
}
@media (min-width:769px) {
  #main .section .list_treatmant li a .txt {
    padding: 30px 30px 40px;
  }
}
#main .section .list_treatmant li a .txt .ttl {
  margin-bottom: 0.6em;
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .list_treatmant li a .txt .ttl {
    margin-bottom: 0.7em;
    font-size: 1.8rem;
  }
  #main .section .list_treatmant li a .txt .ttl.large {
    font-size: 2.4rem;
  }
}
#main .section .list_treatmant li a .txt .btn {
  margin-top: 20px !important;
}
@media (min-width:769px) {
  #main .section .list_treatmant li a .txt .btn {
    margin-top: 25px !important;
  }
}
@media (min-width:769px) {
  #main .section .list_treatmant li a:hover .img img {
    transform: scale(1.1);
  }
  #main .section .list_treatmant li a:hover .btn .btn_link {
    background-color: #00a9e3;
    color: #fff;
  }
  #main .section .list_treatmant li a:hover .btn .btn_link::before {
    border-left-color: #fff;
  }
  #main .section .list_treatmant li a:hover .btn .btn_link::after {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
}
#main .section .block_important {
  width: 100%;
  margin: 60px 0 0;
  padding: 20px 25px;
  border: 5px solid rgba(0, 169, 227, 0.5);
}
@media (min-width:769px) {
  #main .section .block_important {
    margin: 80px 0 0;
    padding: 40px 43px;
  }
}
#main .section .block_important .ttl {
  margin-bottom: 0.8em;
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #main .section .block_important .ttl {
    font-size: 2.4rem;
    text-align: left;
  }
}
#main .section .block_important * + .ttl_sub {
  margin-top: 1em;
}
#main .section .block_important .ttl_sub {
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_important .ttl_sub {
    font-size: 1.6rem;
  }
}
#main .section .block_important p + p {
  margin-top: 1em;
}
#main .section .block_link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media (min-width:769px) {
  #main .section .block_link {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    align-items: center;
  }
}
#main .section .block_link {
  border: 1px solid #c8c8c8;
}
#main .section .block_link .img img {
  width: 100%;
  aspect-ratio: 315/150;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width:769px) {
  #main .section .block_link .img {
    overflow: hidden;
    position: relative;
  }
  #main .section .block_link .img img {
    width: 550px;
    height: 260px;
    transition: all 0.3s;
  }
}
@media (min-width:769px) {
  #main .section .block_link:hover .img img {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
#main .section .block_link .txt {
  padding: 20px 25px 25px;
}
@media (min-width:769px) {
  #main .section .block_link .txt {
    flex: 1;
    padding: 20px 50px;
  }
}
#main .section .block_link .txt .ttl {
  margin-bottom: 0.6em;
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .block_link .txt .ttl {
    margin-bottom: 0.7em;
    font-size: 2.6rem;
  }
}
#main .section .map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 66.667%;
}
#main .section .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width:769px) {
  #main .section .map {
    height: 510px;
    padding: 0;
  }
}
@media (min-width:769px) {
  #main .section .block_info {
    display: flex;
  }
}
@media (min-width:769px) {
  #main .section .block_info .box.left {
    width: 360px;
    margin-right: 45px;
  }
}
#main .section .block_info .box.right {
  margin-top: 20px;
}
@media (min-width:769px) {
  #main .section .block_info .box.right {
    flex: 1;
    margin-top: 0;
  }
}
#main .section .block_info .box.right iframe {
  width: 100%;
  aspect-ratio: 2/3;
}
@media (min-width:769px) {
  #main .section .block_info .box.right iframe {
    aspect-ratio: 4/3;
  }
}
#main .section .block_info .table_info {
  width: 100%;
  border-bottom: 1px solid #707070;
}
#main .section .block_info .table_info tr {
  border-top: 1px solid #707070;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .block_info .table_info tr {
    font-size: 1.3rem;
  }
}
#main .section .block_info .table_info tr th {
  padding: 11px 0;
  font-weight: 400;
}
#main .section .block_info .table_info tr th.ttl {
  width: 6em;
  text-align: left;
}
#main .section .block_info .table_info tr td {
  padding: 17px 0;
}
#main .section .block_info .cap {
  margin-top: 0.5em;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info .cap {
    font-size: 1.3rem;
  }
}
#main .section .block_info .cap + .att {
  margin-top: 0.5em;
}
#main .section .block_info .address {
  margin-top: 1.2em;
  font-size: 1.6rem;
  line-height: 1.7857142857;
}
@media (min-width:769px) {
  #main .section .block_info .address {
    font-size: 1.7rem;
  }
}
#main .section .block_info .root {
  margin-top: 0.2em;
  margin-bottom: 0.8em;
}
@media (min-width:769px) {
  #main .section .block_info .root {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
#main .section .block_info .att + .tel {
  margin-top: 1.2em;
}
#main .section .block_info .tel {
  font-size: 2.2rem;
  line-height: 1;
}
#main .section .block_info .tel .tag {
  margin-right: 0.3em;
  font-size: 1.4rem;
}
#main .section .block_info .btn {
  margin-top: 25px !important;
  display: block;
}
#main .section .list_news {
  border-top: 1px solid #c8c8c8;
}
#main .section .list_news + .btn {
  margin-top: 25px !important;
}
@media (min-width:769px) {
  #main .section .list_news + .btn {
    margin-top: 45px !important;
  }
}
#main .section .list_news > li {
  border-bottom: 1px solid #c8c8c8;
}
#main .section .list_news > li a {
  padding: 15px 0;
  text-decoration: none;
  display: block;
}
@media (min-width:769px) {
  #main .section .list_news > li a {
    padding: 28px 20px;
    display: flex;
    align-items: center;
  }
  #main .section .list_news > li a .date {
    width: 11em;
  }
  #main .section .list_news > li a .txt {
    flex: 1;
  }
}
#main .section .article .date {
  margin-bottom: 0.9em;
  font-size: 1.4rem;
}
#main .section .article h1 {
  margin-bottom: 1.1em;
  font-size: 1.8rem;
}
@media (min-width:769px) {
  #main .section .article h1 {
    margin-bottom: 1.3em;
    font-size: 2.6rem;
  }
}
#main .section .article .btn {
  margin-top: 40px !important;
}
@media (min-width:769px) {
  #main .section .article .btn {
    margin-top: 100px !important;
  }
}
#main .section .article .cts * + h2 {
  margin-top: 1.5em;
}
@media (min-width:769px) {
  #main .section .article .cts * + h2 {
    margin-top: 2em;
  }
}
#main .section .article .cts h2 {
  margin-bottom: 0.7em;
  font-size: 1.6rem;
}
@media (min-width:769px) {
  #main .section .article .cts h2 {
    font-size: 2rem;
  }
}
#main .section .article .cts * + h3 {
  margin-top: 1.5em;
}
@media (min-width:769px) {
  #main .section .article .cts * + h3 {
    margin-top: 2em;
  }
}
#main .section .article .cts h3 {
  margin-bottom: 0.6em;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .article .cts h3 {
    font-size: 1.8rem;
  }
}
#main .section .article .cts p + p {
  margin-top: 1em;
}
#main .section .article .cts .icon_pdf a {
  text-decoration: none;
  position: relative;
  padding-left: 27px;
}
@media (min-width:769px) {
  #main .section .article .cts .icon_pdf a {
    padding-left: 29px;
  }
}
#main .section .article .cts .icon_pdf a::before {
  content: "";
  width: 19px;
  height: 23px;
  display: block;
  background-image: url("../images/icn_pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (min-width:769px) {
  #main .section .article .cts .icon_pdf a::before {
    top: 0;
  }
}
#main .section .article .cts * + ul {
  margin-top: 1.5em;
}
@media (min-width:769px) {
  #main .section .article .cts * + ul {
    margin-top: 2em;
  }
}
#main .section .article .cts ul {
  margin-left: 0.5em;
  padding-left: 1.2em;
}
#main .section .article .cts ul > li {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (min-width:769px) {
  #main .section .article .cts ul > li {
    font-size: 1.6rem;
  }
}
#main .section .article .cts ul > li + li {
  margin-top: 0.3em;
}
#main .section .article .cts ul > li::before {
  content: "・";
  margin-left: -1em;
}
#main .section .article .cts ul > li ul {
  margin-left: 0;
}
#main .section .article .cts ul > li ol {
  margin-left: 0.3em;
}
#main .section .article .cts * + ol {
  margin-top: 1.5em;
}
@media (min-width:769px) {
  #main .section .article .cts * + ol {
    margin-top: 2em;
  }
}
#main .section .article .cts ol {
  margin-left: 1em;
  padding-left: 1em;
}
#main .section .article .cts ol > li {
  list-style: decimal;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (min-width:769px) {
  #main .section .article .cts ol > li {
    font-size: 1.6rem;
  }
}
#main .section .article .cts ol > li + li {
  margin-top: 0.3em;
}
#main .section .article .cts ol > li ul {
  margin-left: 0;
}
#main .section .article .cts ol > li ol {
  margin-left: 0.3em;
}
#main .section .article .cts * + .wp-block-image {
  margin-top: 25px;
}
@media (min-width:769px) {
  #main .section .article .cts * + .wp-block-image {
    margin-top: 45px;
  }
}
#main .section .article .cts .wp-block-image + * {
  margin-top: 20px;
}
@media (min-width:769px) {
  #main .section .article .cts .wp-block-image + * {
    margin-top: 40px;
  }
}
#main .section .article .cts .wp-block-image {
  margin-left: auto;
  margin-right: auto;
}
#main .section .article .cts .wp-block-image img {
  width: 100%;
}
@media (min-width:769px) {
  #main .section .article .cts .wp-block-image.size-medium {
    width: 600px;
  }
}
@media (min-width:769px) {
  #main .section .article .cts .wp-block-image.size-large {
    width: 800px;
  }
}
@media (min-width:769px) {
  #main .section .article .cts .wp-block-image.size-full {
    width: 100%;
  }
}
#main .section .article .cts .wp-block-image figcaption {
  margin-top: 0.7em;
  font-size: 1.2rem;
  line-height: 1.75;
}
@media (min-width:769px) {
  #main .section .article .cts .wp-block-image figcaption {
    font-size: 1.3rem;
  }
}
#main .section .page_nav {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
}
@media (min-width:769px) {
  #main .section .page_nav {
    margin-top: 60px;
    gap: 0 28px;
  }
}
#main .section .page_nav li {
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .page_nav li {
    font-size: 1.5rem;
  }
}
#main .section .page_nav li a {
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  border-radius: 100vmax;
  text-decoration: none;
  border: 1px solid rgba(173, 173, 173, 0);
}
@media (min-width:769px) {
  #main .section .page_nav li a {
    width: 44px;
    height: 44px;
  }
  #main .section .page_nav li a:hover {
    color: #fff;
    background-color: #323232;
  }
}
#main .section .page_nav li.current span {
  width: 28px;
  height: 28px;
  border: 1px solid #adadad;
  display: grid;
  place-content: center;
  border-radius: 100vmax;
}
@media (min-width:769px) {
  #main .section .page_nav li.current span {
    width: 44px;
    height: 44px;
  }
}
#main .section .page_nav li.arrow a::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-left: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  transform: skew(-5deg);
}
@media (min-width:769px) {
  #main .section .page_nav li.arrow a::before {
    width: 19px;
    height: 19px;
  }
  #main .section .page_nav li.arrow a:hover {
    background-color: #323232;
  }
  #main .section .page_nav li.arrow a:hover::before {
    border-color: #fff;
  }
}
@media (min-width:769px) {
  #main .section .page_nav li.arrow.prev {
    margin-right: 20px;
  }
}
#main .section .page_nav li.arrow.prev a::before {
  margin-left: 11px;
  transform: rotate(45deg);
}
@media (min-width:769px) {
  #main .section .page_nav li.arrow.next {
    margin-left: 15px;
  }
}
#main .section .page_nav li.arrow.next a::before {
  margin-right: 11px;
  transform: rotate(225deg);
}
#main .section .swiper_footer {
  display: flex;
  margin-bottom: -60px;
}
@media (min-width:769px) {
  #main .section .swiper_footer {
    margin-bottom: -120px;
  }
}
@media (min-width:769px) {
  #main .section .swiper_footer .swiper {
    width: 25%;
  }
}
#main .section .swiper_footer .swiper .swiper-slide {
  width: 100%;
  overflow: hidden;
}
#main .section .swiper_footer .swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 300/200;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .section .block_purpose {
  margin-top: -10px;
}
@media (min-width:769px) {
  #main .section .block_purpose {
    margin-top: -20px;
  }
}
#main .section .block_purpose .ttl {
  margin-bottom: 0.6em;
  text-align: center;
  font-family: myfont;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (min-width:769px) {
  #main .section .block_purpose .ttl {
    font-size: 4rem;
  }
}
#main .section .block_purpose .lead {
  font-family: myfont;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .block_purpose .lead {
    font-size: 1.8rem;
  }
}
#main .section .table_list_01 {
  width: 100%;
  border-top: 1px solid #c8c8c8;
}
#main .section .table_list_01 tr {
  border-bottom: 1px solid #c8c8c8;
}
#main .section .table_list_01 tr th {
  width: 6em;
  padding: 15px 0;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .table_list_01 tr th {
    width: 12em;
    padding: 25px 20px;
    font-size: 1.6rem;
  }
}
#main .section .table_list_01 tr td {
  padding: 15px 0;
}
@media (min-width:769px) {
  #main .section .table_list_01 tr td {
    padding: 25px 20px;
  }
}
#main .section .table_list_01 tr td p + p {
  margin-top: 0.5em;
}
@media (min-width:769px) {
  #main .section .table_list_01 tr td p + p {
    margin-top: 0;
  }
}
#main .section .table_list_02 {
  width: 100%;
  border-top: 1px solid #c8c8c8;
}
#main .section .table_list_02 tr {
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  flex-direction: column;
}
@media (min-width:769px) {
  #main .section .table_list_02 tr {
    display: table-row;
  }
}
#main .section .table_list_02 tr th {
  padding: 15px 0 0;
  font-weight: 500;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .table_list_02 tr th {
    width: 224px;
    padding: 25px 30px;
    font-size: 1.6rem;
    font-weight: 400;
    border-bottom: 1px solid #00a9e3;
  }
  #main .section .table_list_02 tr th:first-child {
    border-top: 1px solid #00a9e3;
  }
}
#main .section .table_list_02 tr td {
  padding: 5px 0 15px;
}
@media (min-width:769px) {
  #main .section .table_list_02 tr td {
    padding: 25px 30px;
  }
}
#main .section .table_list_02 tr td .att {
  margin-top: 0.5em;
  font-size: 1.2rem;
}
#main .section .table_list_02 tr td .att + p {
  margin-top: 0.6em;
}
@media (min-width:769px) {
  #main .section .table_list_02 tr td .att {
    font-size: 1.4rem;
  }
}
#main .section .table_list_02 tr td ul {
  padding-left: 1.2em;
}
#main .section .table_list_02 tr td ul + * {
  margin-top: 1.2em;
}
#main .section .table_list_02 tr td ul li {
  font-size: 1.4rem;
  line-height: 1.6;
}
#main .section .table_list_02 tr td ul li + li {
  margin-top: 0.3em;
}
#main .section .table_list_02 tr td ul li::before {
  content: "・";
  margin-left: -1em;
}
@media (min-width:769px) {
  #main .section .table_list_02 tr td ul li {
    font-size: 1.6rem;
  }
}
#main .section .table_price > li + li {
  margin-top: 60px;
}
@media (min-width:769px) {
  #main .section .table_price > li + li {
    margin-top: 120px;
  }
}
@media (min-width:769px) {
  #main .section .table_price > li .ttl + .list_price {
    margin-top: -5px;
  }
}
#main .section .table_price > li .list_price {
  border-top: 1px solid #c8c8c8;
}
#main .section .table_price > li .list_price > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price > li {
    padding: 12px 10px;
  }
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price > li .item {
    display: flex;
    align-items: center;
    gap: 0 35px;
  }
}
#main .section .table_price > li .list_price > li .item .ttl_sub {
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price > li .item .ttl_sub {
    width: 10em;
  }
}
#main .section .table_price > li .list_price > li .item .menu {
  margin-top: 8px;
  padding-right: 40px;
  line-height: 1.6;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price > li .item .menu {
    margin-top: 0;
  }
}
#main .section .table_price > li .list_price > li .price {
  padding-right: 1.5em;
  font-weight: 500;
  line-height: 1;
  display: flex;
  gap: 8px 0;
  flex-direction: column;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
#main .section .table_price > li .list_price > li .price span {
  display: block;
}
#main .section .table_price > li .list_price > li .price.btw::after {
  content: "〜";
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#main .section .table_price > li .list_price_rn {
  border-top: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn {
    margin-top: -5px;
  }
}
#main .section .table_price > li .list_price_rn > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #c8c8c8;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li {
    flex-direction: row;
  }
}
#main .section .table_price > li .list_price_rn > li .item {
  width: 100%;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li .item {
    width: auto;
  }
}
#main .section .table_price > li .list_price_rn > li .item .ttl_sub {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0 4px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li .item .ttl_sub {
    width: 8em;
    margin: 0;
    padding-left: 12px;
    padding-right: 0;
    font-weight: 400;
  }
}
#main .section .table_price > li .list_price_rn > li .course {
  width: 100%;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li .course {
    width: auto;
    flex: 1;
  }
}
#main .section .table_price > li .list_price_rn > li .course .dtl {
  display: flex;
  padding: 15px 4px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dotted #c8c8c8;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li .course .dtl {
    padding: 18px 12px;
    border-top: none;
  }
  #main .section .table_price > li .list_price_rn > li .course .dtl + .dtl {
    border-top: 1px solid #c8c8c8;
  }
}
#main .section .table_price > li .list_price_rn > li .time {
  margin: 0;
  line-height: 1;
}
#main .section .table_price > li .list_price_rn > li .price {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  gap: 6px 0;
  flex-direction: column;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
#main .section .table_price > li .list_price_rn > li .price span {
  display: block;
}
@media (min-width:769px) {
  #main .section .table_price > li .list_price_rn > li .price {
    flex-direction: row;
    gap: 0 8px;
  }
}
#main .section .map_access iframe {
  width: 100%;
  height: 56vw;
}
@media (min-width:769px) {
  #main .section .map_access iframe {
    height: 600px;
  }
}
#main .section .map_access .txt {
  margin-top: 30px;
}
@media (min-width:769px) {
  #main .section .map_access .txt {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#main .section .map_access .txt p + p {
  margin-top: 1em;
}
#main .section .map_access .txt p .tel {
  display: block;
}
#main .section .map_access .txt p.att {
  margin-top: 1.2em;
}
@media (min-width:769px) {
  #main .section .map_access .txt p.att {
    margin-top: 1.8em;
  }
}
#main .section .map_access .list_btn {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
@media (min-width:769px) {
  #main .section .map_access .list_btn {
    margin-top: 60px;
    flex-direction: row;
    justify-content: center;
    gap: 0 80px;
  }
}
#main .section .map_access .list_btn .btn {
  margin-top: 0 !important;
}
#main .section .map_access .list_btn .btn a {
  height: 60px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .section .map_access .list_btn .btn a::before {
  display: none;
}
#main .section .map_access .list_btn .btn a::after {
  display: none;
}
#main .section .map_access .list_btn .btn a img {
  width: auto;
  height: 20px;
  margin-right: 10px;
  filter: invert(43%) sepia(83%) saturate(918%) hue-rotate(160deg) brightness(97%) contrast(105%);
  display: block;
}
@media (min-width:769px) {
  #main .section .map_access .list_btn .btn a img {
    margin-right: 24px;
  }
}
@media (min-width:769px) {
  #main .section .map_access .list_btn .btn a {
    width: 430px;
    height: 75px;
  }
  #main .section .map_access .list_btn .btn a:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
}
#main .section .block_faq + .block_faq {
  margin-top: 30px;
}
@media (min-width:769px) {
  #main .section .block_faq + .block_faq {
    margin-top: 60px;
  }
}
#main .section .block_faq .ttl {
  margin-bottom: 0.7em;
  font-size: 1.8rem;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .block_faq .ttl {
    margin-bottom: 1.1em;
    font-size: 2.4rem;
  }
}
#main .section .list_faq > li {
  padding: 10px 0;
  border-bottom: 1px solid #d0d0d0;
}
@media (min-width:769px) {
  #main .section .list_faq > li {
    padding: 14px 0;
  }
}
#main .section .list_faq > li:first-child {
  border-top: 1px solid #d0d0d0;
}
#main .section .list_faq > li .faq_q {
  padding: 10px 40px 10px 26px;
  font-weight: 500;
  position: relative;
}
@media (min-width:769px) {
  #main .section .list_faq > li .faq_q {
    padding: 14px 80px 14px 56px;
    cursor: pointer;
  }
}
#main .section .list_faq > li .faq_q::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #323232;
  border-right: 1px solid #323232;
  display: block;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: rotate(135deg);
  margin-top: -6px;
  transform-origin: 50% 50%;
  transition: all 0.3s;
}
@media (min-width:769px) {
  #main .section .list_faq > li .faq_q::after {
    right: 24px;
  }
}
#main .section .list_faq > li .faq_q.active::after {
  transform: rotate(-45deg);
  margin-top: -2px;
}
#main .section .list_faq > li .faq_q .cts {
  position: relative;
}
#main .section .list_faq > li .faq_q .cts::before {
  content: "Q";
  color: #00a9e3;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  position: absolute;
  top: 6px;
  left: -23px;
}
@media (min-width:769px) {
  #main .section .list_faq > li .faq_q .cts::before {
    font-size: 1.8rem;
    top: 7px;
    left: -35px;
  }
}
#main .section .list_faq > li .faq_a {
  padding: 5px 40px 10px 26px;
}
@media (min-width:769px) {
  #main .section .list_faq > li .faq_a {
    padding: 8px 80px 10px 56px;
  }
}
#main .section .list_faq > li .faq_a .cts {
  position: relative;
}
#main .section .list_faq > li .faq_a .cts::before {
  content: "A";
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  position: absolute;
  top: 6px;
  left: -22px;
}
@media (min-width:769px) {
  #main .section .list_faq > li .faq_a .cts::before {
    font-size: 1.8rem;
    top: 7px;
    left: -33px;
  }
}
#main .section .block_entry {
  width: 100%;
  margin: 60px 0 0;
  padding: 20px 25px 30px;
  border: 5px solid rgba(0, 169, 227, 0.5);
}
@media (min-width:769px) {
  #main .section .block_entry {
    margin: 80px auto 0;
    padding: 50px 50px 60px;
  }
}
@media (min-width:769px) {
  #main .section .block_entry p {
    text-align: center;
  }
}
#main .section .block_entry p.att {
  margin-top: 0.5em;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_entry p.att {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem;
  }
}
#main .section .table_form {
  width: 100%;
  margin-top: 30px;
}
@media (min-width:769px) {
  #main .section .table_form {
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width:769px) {
  #main .section .table_form.confirm tr th {
    padding-top: 7px;
  }
}
#main .section .table_form.confirm tr td {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
@media (min-width:769px) {
  #main .section .table_form.confirm tr td {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
@media (min-width:769px) {
  #main .section .table_form.confirm tr td .jobtype {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5em;
  }
}
@media (min-width:769px) {
  #main .section .mw_wp_form_confirm .table_form tr th, .mw_wp_form_confirm #main .section .table_form tr th {
    padding-top: 7px;
  }
}
#main .section .mw_wp_form_confirm .table_form tr td, .mw_wp_form_confirm #main .section .table_form tr td {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
@media (min-width:769px) {
  #main .section .mw_wp_form_confirm .table_form tr td, .mw_wp_form_confirm #main .section .table_form tr td {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
@media (min-width:769px) {
  #main .section .mw_wp_form_confirm .table_form tr td .jobtype, .mw_wp_form_confirm #main .section .table_form tr td .jobtype {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5em;
  }
}

#main .section .table_form tr {
  display: flex;
  flex-direction: column;
}
@media (min-width:769px) {
  #main .section .table_form tr {
    display: table-row;
  }
}
#main .section .table_form tr th {
  width: 100%;
  padding-bottom: 12px;
}
@media (min-width:769px) {
  #main .section .table_form tr th {
    width: 265px;
    padding-bottom: 0;
    justify-content: space-between;
    vertical-align: top;
  }
  #main .section .table_form tr th.middle {
    padding-top: 12px;
  }
}
#main .section .table_form tr th p {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
}
#main .section .table_form tr th p .ess {
  margin-left: 15px;
  padding: 3px 5px 4px;
  display: inline-flex;
  color: #fff;
  background-color: #00a9e3;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width:769px) {
  #main .section .table_form tr th p .ess {
    margin-left: 20px;
  }
}
#main .section .table_form tr th {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (min-width:769px) {
  #main .section .table_form tr th {
    font-size: 1.6rem;
  }
}
#main .section .table_form tr th .ess {
  margin-left: 15px;
  padding: 3px 5px 4px;
  display: inline-flex;
  color: #fff;
  background-color: #00a9e3;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width:769px) {
  #main .section .table_form tr th .ess {
    margin-left: 20px;
  }
}
#main .section .table_form tr td {
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width:769px) {
  #main .section .table_form tr td {
    width: calc(100% - 265px);
    padding-bottom: 50px;
  }
}
#main .section .table_form tr td:has(.alert) {
  padding-bottom: 20px;
}
@media (min-width:769px) {
  #main .section .table_form tr td:has(.alert) {
    padding-bottom: 40px;
  }
}
@media (min-width:769px) {
  #main .section .mw_wp_form_confirm .table_form tr td, .mw_wp_form_confirm #main .section .table_form tr td {
    padding-top: 7px;
    line-height: 1.5;
  }
}

#main .section .table_form tr td .input_area p.alert {
  margin-top: 0.6em;
  color: #fa0000;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area p.alert {
    font-size: 1.4rem;
  }
}
#main .section .table_form tr td .input_area.file_wrap p.alert {
  width: 255px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area.file_wrap p.alert {
    width: auto;
    margin-left: inherit;
    margin-right: inherit;
  }
}
#main .section .table_form tr td .input_area .list_type + .alert {
  margin-top: 1em;
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area .list_type + .alert {
    margin-top: 0.8em;
  }
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area.half .input_txt {
    width: calc((100% - 35px) / 2);
  }
}
#main .section .table_form tr td .input_area .input_txt {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #b4b4b4;
  font-size: 1.6rem;
}
#main .section .table_form tr td .input_area .input_txt.alert {
  border-color: #fa0000;
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area .input_txt {
    height: 46px;
  }
}
#main .section .table_form tr td .input_area.two {
  display: flex;
  justify-content: space-between;
}
#main .section .mw_wp_form_confirm .table_form tr td .input_area.two, .mw_wp_form_confirm #main .section .table_form tr td .input_area.two {
  justify-content: flex-start;
  gap: 0 0.5em;
}

#main .section .table_form tr td .input_area.two .box {
  width: calc((100% - 15px) / 2);
}
#main .section .mw_wp_form_confirm .table_form tr td .input_area.two .box, .mw_wp_form_confirm #main .section .table_form tr td .input_area.two .box {
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width:769px) {
  #main .section .table_form tr td .input_area.two .box {
    width: calc((100% - 35px) / 2);
  }
}
#main .section .table_form tr td .input_area .input_textarea {
  width: 100%;
  height: 73.6vw;
  padding: 12px 14px;
  border: 1px solid #b4b4b4;
  font-size: 1.6rem;
  display: block;
}
#main .section .table_form tr td .input_area .input_textarea.alert {
  border-color: #fa0000;
}
@media (min-width:769px) {
  #main .section .table_form tr td .input_area .input_textarea {
    height: 268px;
  }
}
#main .section .table_form tr td .privacy_box {
  height: 220px;
  padding: 12px 14px;
  border: 1px solid #b4b4b4;
  overflow-y: scroll;
}
@media (min-width:769px) {
  #main .section .table_form tr td .privacy_box {
    height: 236px;
  }
}
#main .section .table_form tr td .privacy_box p + p {
  margin-top: 1.2em;
}
#main .section .table_form tr td .file_wrap {
  margin-top: 5px;
}
@media (min-width:769px) {
  #main .section .table_form tr td .file_wrap {
    margin-top: 0;
  }
}
#main .section .table_form tr td .file_wrap .block {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media (min-width:769px) {
  #main .section .table_form tr td .file_wrap .block {
    flex-direction: row;
    align-items: center;
    gap: 0 20px;
  }
}
#main .section .table_form tr td .file_wrap .block .file_btn {
  width: 255px;
  margin-left: auto;
  margin-right: auto;
  height: 45px;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #00a9e3;
  color: #00a9e3;
  text-decoration: none;
  position: relative;
}
#main .section .table_form tr td .file_wrap .block .file_btn input[type=file] {
  display: none;
}
#main .section .table_form tr td .file_wrap .block .file_btn::before {
  content: "";
  width: 15px;
  height: 18px;
  background-image: url("../images/icn_file.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  filter: invert(43%) sepia(83%) saturate(918%) hue-rotate(160deg) brightness(97%) contrast(105%);
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
#main .section .table_form tr td .file_wrap .block .file_btn.alert {
  border-color: #fa0000;
  color: #fa0000;
}
#main .section .table_form tr td .file_wrap .block .file_btn.alert::before {
  filter: invert(16%) sepia(99%) saturate(7262%) hue-rotate(10deg) brightness(96%) contrast(119%);
}
@media (min-width:769px) {
  #main .section .table_form tr td .file_wrap .block .file_btn {
    width: 280px;
    height: 55px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  #main .section .table_form tr td .file_wrap .block .file_btn:hover {
    color: #fff;
    background-color: #00a9e3;
    border-color: #00a9e3;
  }
  #main .section .table_form tr td .file_wrap .block .file_btn:hover::before {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
}
#main .section .table_form tr td .file_wrap .block .file_name,
#main .section .table_form tr td .file_wrap .block .mw-wp-form_file {
  padding: 0;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  padding: 10px;
}
#main .section .mw_wp_form_confirm .table_form tr td .file_wrap .block .file_name, .mw_wp_form_confirm #main .section .table_form tr td .file_wrap .block .file_name, #main .section .mw_wp_form_confirm .table_form tr td .file_wrap .block .mw-wp-form_file, .mw_wp_form_confirm #main .section .table_form tr td .file_wrap .block .mw-wp-form_file {
  text-align: left;
  padding: 0;
}

@media (min-width:769px) {
  #main .section .table_form tr td .file_wrap .block .file_name,
  #main .section .table_form tr td .file_wrap .block .mw-wp-form_file {
    width: auto;
    margin-left: inherit;
    margin-right: inherit;
    text-align: left;
    font-size: 1.5rem;
  }
}
#main .section .table_form tr td .file_wrap .block .delete,
#main .section .table_form tr td .file_wrap .block .mwform-file-delete {
  width: 80px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #fa0000;
  line-height: 1;
  display: grid;
  place-content: center;
  border-radius: 3px;
}
@media (min-width:769px) {
  #main .section .table_form tr td .file_wrap .block .delete,
  #main .section .table_form tr td .file_wrap .block .mwform-file-delete {
    margin-left: 20px;
    margin-right: inherit;
    transition: all 0.3s;
  }
  #main .section .table_form tr td .file_wrap .block .delete:hover,
  #main .section .table_form tr td .file_wrap .block .mwform-file-delete:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}
#main .section .table_form tr td .list_type {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media (min-width:769px) {
  #main .section .table_form tr td .list_type {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
#main .section .table_form tr td .list_type > li {
  height: 20px;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .table_form tr td .list_type > li {
    padding-left: 28px;
    font-size: 1.6rem;
  }
  #main .section .table_form tr td .list_type > li + li {
    margin-left: 20px;
  }
}
#main .section .table_form tr td .list_type > li input[type=checkbox] {
  display: none;
}
#main .section .table_form tr td .list_type > li input[type=checkbox]:checked + label::after {
  content: "";
  width: 9px;
  height: 7px;
  border-left: 2px solid #00a9e3;
  border-bottom: 2px solid #00a9e3;
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  transform: rotate(-45deg);
}
#main .section .table_form tr td .list_type > li input[type=checkbox]:checked + label::before {
  border-color: #00a9e3;
}
@media (min-width:769px) {
  #main .section .table_form tr td .list_type > li input[type=checkbox]:checked + label::after {
    width: 10px;
    height: 8px;
    top: 5px;
  }
}
#main .section .table_form tr td .list_type > li input[type=radio] {
  display: none;
}
#main .section .table_form tr td .list_type > li input[type=radio]:checked + label::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #00a9e3;
  display: block;
  position: absolute;
  top: 5px;
  left: 4px;
}
#main .section .table_form tr td .list_type > li input[type=radio]:checked + label::before {
  border-color: #00a9e3;
}
@media (min-width:769px) {
  #main .section .table_form tr td .list_type > li input[type=radio]:checked + label::after {
    top: 6px;
    left: 5px;
  }
}
#main .section .table_form tr td .list_type > li input[type=checkbox] + label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}
#main .section .table_form tr td .list_type.alert > li input[type=checkbox] + label::before {
  border-color: #fa0000;
}

@media (min-width:769px) {
  #main .section .table_form tr td .list_type > li input[type=checkbox] + label::before {
    width: 20px;
    height: 20px;
    top: 1px;
  }
}
#main .section .table_form tr td .list_type > li input[type=radio] + label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 10px;
  border: 1px solid #707070;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
}
#main .section .table_form tr td .list_type.alert > li input[type=radio] + label::before {
  border-color: #fa0000;
}

@media (min-width:769px) {
  #main .section .table_form tr td .list_type > li input[type=radio] + label::before {
    width: 20px;
    height: 20px;
  }
}
#main .section .form_btn {
  margin: 25px 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media (min-width:769px) {
  #main .section .form_btn {
    margin: 40px 0 0;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0 60px;
  }
}
#main .section .form_btn li .btn {
  margin: 0 auto !important;
}
#main .section .form_btn li .btn.prev {
  width: 50%;
}
#main .section .lead_thanks {
  margin-left: -10px;
  margin-right: -10px;
  text-align: center;
}
@media (min-width:769px) {
  #main .section .lead_thanks {
    margin-left: 0;
    margin-right: 0;
  }
}
#main .section .lead_thanks + .form_btn {
  margin-top: 40px;
}
@media (min-width:769px) {
  #main .section .lead_thanks + .form_btn {
    margin-top: 90px;
  }
}
#main .section .block_privacy .box + .box {
  margin-top: 3em;
}
#main .section .block_privacy .box .ttl {
  margin-bottom: 0.2em;
  font-size: 1.4rem;
  font-weight: 400;
}
#main .section .block_privacy .box p {
  font-size: 1.4rem;
}
#main .section .block_privacy .box ol li {
  font-size: 1.4rem;
}
#main .section .block_privacy .box ul {
  margin-left: 0.5em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  padding-left: 1.2em;
}
#main .section .block_privacy .box ul > li {
  font-size: 1.4rem;
  line-height: 1.6;
}
#main .section .block_privacy .box ul > li + li {
  margin-top: 0.3em;
}
#main .section .block_privacy .box ul > li::before {
  content: "・";
  margin-left: -1em;
}
#main .section .block_privacy .box ul > li ul {
  margin-left: 0;
}
#main .section .block_privacy .box ul > li ol {
  margin-left: 0.3em;
}
#main .section .block_privacy .box ol {
  margin-left: 1em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  padding-left: 1em;
}
#main .section .block_privacy .box ol > li {
  list-style: decimal;
  font-size: 1.4rem;
  line-height: 1.6;
}
#main .section .block_privacy .box ol > li + li {
  margin-top: 0.3em;
}
#main .section .block_privacy .box ol > li ul {
  margin-left: 0;
}
#main .section .block_privacy .box ol > li ol {
  margin-left: 0.3em;
}
#main .section {
  /* 2026.01 */
}
#main .section .info_top {
  margin-top: 30px;
}
@media (min-width:769px) {
  #main .section .info_top {
    margin-top: 65px;
  }
}
@media (min-width:769px) {
  #main .section .block_info {
    display: flex;
    gap: 0 60px;
  }
}
@media (min-width:769px) {
  #main .section .block_info .box.info_left {
    width: calc((100% - 60px) / 2);
  }
  #main .section .block_info .box.info_left .table_info tr th {
    padding: 11px 0;
  }
  #main .section .block_info .box.info_left .table_info tr td {
    padding: 21px 0;
  }
  #main .section .block_info .box.info_left .att {
    margin-top: 0.8em;
  }
}
#main .section .block_info .box.info_right {
  margin-top: 20px;
}
@media (min-width:769px) {
  #main .section .block_info .box.info_right {
    flex: 1;
    margin-top: 0;
  }
  #main .section .block_info .box.info_right .address {
    margin-top: 0;
  }
  #main .section .block_info .box.info_right .info_lead {
    margin-bottom: 1em;
  }
  #main .section .block_info .box.info_right .tel {
    font-size: 2.6rem;
  }
}
#main .section {
  /* 2026.03 */
}
@media (min-width:769px) {
  #main .section .block_info_02 {
    display: flex;
  }
}
#main .section .block_info_02.block_accsess {
  margin-top: 20px;
}
@media (min-width:769px) {
  #main .section .block_info_02.block_accsess {
    margin-top: 65px;
  }
}
@media (min-width:769px) {
  #main .section .block_info_02 .box {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
#main .section .block_info_02 .box p {
  line-height: 1.5;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left {
    width: 50%;
    padding-right: 30px;
  }
}
#main .section .block_info_02 .box.info_left .att {
  margin-top: 0.5em;
}
#main .section .block_info_02 .box.info_left .att a {
  color: #00a9e3;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .att a:hover {
    opacity: 0.6;
  }
}
#main .section .block_info_02 .box.info_left .address {
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .address {
    font-size: 1.6rem;
  }
}
#main .section .block_info_02 .box.info_left .address .tag {
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .address .tag {
    font-size: 1.6rem;
    margin-right: 0.7em;
    display: inline-block;
  }
}
#main .section .block_info_02 .box.info_left .root {
  margin-top: 0.2em;
  margin-bottom: 0.8em;
  font-size: 1.3rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .root {
    margin-top: 0.5em;
    font-size: 1.4rem;
  }
}
#main .section .block_info_02 .box.info_left .open {
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .open {
    font-size: 1.6rem;
  }
}
#main .section .block_info_02 .box.info_left .open .tag {
  margin-right: 0.7em;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .open .tag {
    font-size: 1.6rem;
    display: inline-block;
  }
}
#main .section .block_info_02 .box.info_left .open .dtl {
  font-size: 1.3rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_left .open {
    font-size: 1.6rem;
  }
  #main .section .block_info_02 .box.info_left .open .dtl {
    font-size: 1.4rem;
  }
}
#main .section .block_info_02 .box.info_right {
  margin-top: 20px;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_right {
    flex: 1;
    margin-top: 0;
    padding-left: 30px;
    border-left: 1px solid #c8c8c8;
  }
}
#main .section .block_info_02 .box.info_right .contact {
  margin-top: 15px;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_right .contact {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
}
#main .section .block_info_02 .box.info_right .contact .tel {
  font-size: 2.2rem;
  line-height: 1;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_right .contact .tel {
    font-size: 2.6rem;
  }
}
#main .section .block_info_02 .box.info_right .contact .tel .tag {
  margin-right: 0.3em;
  font-size: 1.4rem;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_right .contact .tel .tag {
    font-size: 1.6rem;
  }
}
#main .section .block_info_02 .box.info_right .contact .btn {
  margin-top: 15px !important;
}
@media (min-width:769px) {
  #main .section .block_info_02 .box.info_right .contact .btn {
    margin: 0 0 0 38px !important;
    display: block;
  }
}

/* ======================================
#footer
====================================== */
#footer {
  padding: 50px 0 24px;
  color: #fff;
  background-color: #50525a;
}
@media (min-width:769px) {
  #footer {
    padding: 80px 0 48px;
  }
}
@media (min-width:769px) {
  #footer .inner {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }
}
@media (min-width:1241px) {
  #footer .inner {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width:769px) {
  #footer .inner .info {
    margin-right: auto;
  }
}
#footer .inner .info .logo {
  text-align: center;
}
#footer .inner .info .logo img {
  width: 128px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
@media (min-width:769px) {
  #footer .inner .info .logo img {
    width: 195px;
  }
}
#footer .inner .info .ttl {
  margin-top: 22px;
  text-align: center;
  font-size: 1.5rem;
}
@media (min-width:769px) {
  #footer .inner .info .ttl {
    margin-top: 35px;
    font-size: 1.8rem;
  }
}
#footer .inner .info p {
  text-align: center;
}
#footer .inner .info p.address {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media (min-width:769px) {
  #footer .inner .info p.address {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}
#footer .inner .info p.tel {
  margin-top: 14px;
  font-size: 2rem;
}
#footer .inner .info p.tel .tag {
  margin-right: 0.3em;
  font-size: 1.4rem;
}
#footer .inner .nav_footer {
  display: none;
}
@media (min-width:769px) {
  #footer .inner .nav_footer {
    padding-bottom: 70px;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 87px;
         column-gap: 87px;
    display: block;
  }
  #footer .inner .nav_footer > li {
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 600;
  }
  #footer .inner .nav_footer > li.sub {
    font-size: 1.4rem;
    font-weight: 400;
  }
  #footer .inner .nav_footer > li a {
    color: #fff;
  }
  #footer .inner .nav_footer > li a:hover {
    opacity: 0.7;
  }
  #footer .inner .nav_footer > li .nav_sub {
    margin-top: 16px;
    padding-left: 1em;
  }
  #footer .inner .nav_footer > li .nav_sub > li {
    font-size: 1.4rem;
    font-weight: 400;
  }
  #footer .inner .nav_footer > li .nav_sub > li + li {
    margin-top: 12px;
  }
}
@media (min-width:769px) {
  #footer .inner .block {
    width: 195px;
    margin-left: 107px;
    display: flex;
    flex-direction: column;
  }
}
#footer .inner .block .contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media (min-width:769px) {
  #footer .inner .block .contact {
    margin-top: 0;
  }
}
#footer .inner .block .contact li a {
  height: 53px;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width:769px) {
  #footer .inner .block .contact li a {
    width: 195px;
    height: 60px;
  }
}
#footer .inner .block .contact li a[target=_blank]::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background-image: url(../images/icn_link.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  position: absolute;
  right: 7px;
  top: 7px;
}
#footer .inner .block .contact li a:hover {
  color: #323232;
  background-color: #fff;
}
#footer .inner .block .contact li a:hover::after {
  filter: invert(17%) sepia(0%) saturate(358%) hue-rotate(230deg) brightness(100%) contrast(91%);
}
#footer .inner .block .contact li a span {
  display: block;
}
#footer .inner .block .contact li a span.txt {
  font-size: 1.4rem;
  font-weight: 500;
}
#footer .inner .block .contact li a span.txt.number {
  font-size: 1.6rem;
}
@media (min-width:769px) {
  #footer .inner .block .contact li a span.txt.number {
    font-size: 1.5rem;
  }
}
#footer .inner .block .contact li a span.eng {
  margin-top: 5px;
  font-size: 1.2rem;
}
#footer .inner .block .sns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
}
@media (min-width:769px) {
  #footer .inner .block .sns {
    gap: 0 18px;
    justify-content: flex-start;
  }
}
#footer .inner .block .sns li a img {
  width: 30px;
  height: 30px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
@media (min-width:769px) {
  #footer .inner .block .sns li a img {
    transition: all 0.3s;
  }
  #footer .inner .block .sns li a:hover {
    opacity: 0.7;
  }
}
#footer .inner .block .copy {
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
}
@media (min-width:769px) {
  #footer .inner .block .copy {
    margin-top: auto;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: right;
  }
}

/* ======================================
form関連
====================================== */
input[type=password],
input[type=number],
input[type=text],
input[type=submit],
input[type=button],
input[type=email],
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #323232;
}

input[type=text] {
  font-family: sans-serif !important;
  font-weight: 500;
}
input[type=text]::-moz-placeholder {
  font-family: sans-serif !important;
  font-weight: 500;
  color: #b4b4b4 !important;
}
input[type=text]::placeholder {
  font-family: sans-serif !important;
  font-weight: 500;
  color: #b4b4b4 !important;
}
input[type=text]:-ms-input-placeholder {
  color: #b4b4b4 !important;
}
input[type=text]::-ms-input-placeholder {
  color: #b4b4b4 !important;
}

input[type=submit] {
  font-family: sans-serif !important;
  font-weight: 500;
}

textarea {
  font-family: sans-serif !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ======================================
adjust
====================================== */
/* margin */
.mbm00 {
  margin-bottom: 0px !important;
}

.mlt00 {
  margin-left: 0px !important;
}

.mrt00 {
  margin-right: 0px !important;
}

.mlra {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* padding */
.ptp00 {
  padding-top: 0 !important;
}

.pbm00 {
  padding-bottom: 0 !important;
}

.plt00 {
  padding-left: 0 !important;
}

.prt00 {
  padding-right: 0 !important;
}

/* text-align */
.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.parallax-img img {
  width: 100%;
}