@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
:root {
  --txt: #212121;
  --mcolor: #004680;
  --scolor: #F3E600;
  --container: 1640px;
  --gray: #e9e9e9;
  --blue: #003b7d;
  --red: red;
  --f-main: "Noto Sans JP", sans-serif;
  --f-nts: "Noto Sans JP", sans-serif;
  --f-arial: Arial, sans-serif;
  --f-nsr: "Noto Serif JP", serif;
  --f-yumin: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
}

/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
  font-weight: 400;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  flex-shrink: 0;
  height: auto;
}

select {
  visibility: visible !important;
}

a {
  transition: all ease 0.3s;
  text-decoration: none;
  color: var(--txt);
}

a[href^="tel:"] {
  word-break: keep-all;
}

/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
  background: #fff;
}

body {
  -webkit-text-size-adjust: none;
  min-width: 320px;
  color: var(--txt);
  font-family: var(--f-main);
}

table {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

p, dd, dt, li, th, td, address {
  line-height: 1.8em;
  letter-spacing: 0;
}

p {
  margin: 0 0 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

.bold {
  font-weight: bold;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.auto {
  margin-left: auto;
  margin-right: auto;
}

.red {
  color: var(--red);
}

.txt_line {
  text-decoration: underline;
}

.f_big {
  font-size: 150%;
}

.f_sm {
  font-size: 80%;
}

.m0a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#wrapper {
  min-width: 1260px;
  overflow: hidden;
  margin: 0 auto;
}

.inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 20px;
}

.pt0 {
  padding-top: 0 !important;
}

.lk-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* HAMBUGER BUTTON */
.hamburger {
  font: inherit;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 13px 13px 5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 5px;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: 1px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  position: absolute;
  width: 100%;
  height: 5px;
  transition: all ease 0.15s;
  background-color: var(--mcolor);
  border-radius: 10px;
}

.hamburger-inner::after,
.hamburger-inner::before {
  display: block;
  content: "";
}

.hamburger-inner::before {
  top: -13px;
}

.hamburger-inner::after {
  bottom: -13px;
}

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy .hamburger-inner::after,
.hamburger--3dxy .hamburger-inner::before {
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy.is_active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important;
}

.hamburger--3dxy.is_active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is_active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*==========================================================                     H E A D E R
==========================================================*/
header {
  position: relative;
  z-index: 9;
}

h1 {
  font-size: 14px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
}

.h_box {
  width: 100%;
  position: fixed;
  background-color: #fff;
}

.h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.h_contact {
  display: flex;
  align-items: center;
}

.h_contact>p {
  margin-bottom: 0;
}

.h_contact>p:not(:last-child) {
  margin-right: 10px;
  border-radius: 5px;
  line-height: 1em;
}

.h_box {
  display: flex;
  justify-content: space-between;
  padding-left: 75px;
  z-index: 50;
  max-width: 1920px;
  margin: 0 auto;
  left: 0 !important;
  right: 0 !important;
}

.h_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #F3E600;
  bottom: 28px;
  left: calc(50% - 960px);
  z-index: -1;
}

.h_left {
  flex-shrink: 0;
  padding: 21px 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.h_left_sub {
  position: absolute;
  color: var(--mcolor);
  font-size: 20px;
  font-weight: 900;
  top: 22px;
  right: -60px;
  line-height: 1.5em;
}

.h_left h1 a {
  display: block;
  background-color: #fff;
  padding: 0 12px;
}

.h_right {
  background-color: var(--mcolor);
  padding: 14px 87px 15px 25px;
}

nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 128, 0.95);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 50;
  display: none !important;
  padding: 150px 0;
  overflow: auto;
}

nav .h_right {
  padding: 0;
  background-color: transparent;
}

nav .h_contact_tel .tel_sub {
  line-height: 1.5em;
}

.is_nav {
  overflow: hidden;
}

.is_nav nav {
  z-index: 100;
  display: block !important;
}

/* .is_nav .h_box {
  background-color: rgba(0, 70, 128, 0.95);
} */

/* .is_nav .h_box::before {
  display: none;
} */

.is_scroll .to_top {
  z-index: 6;
}

.nav_list {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 20px;
}

.nav_list+.h_right {
  margin-top: 50px;
}

.nav_list * {
  color: #fff;
}

.nav_list .parent {
  min-width: 240px;
}

.nav_list .hook {
  border-bottom: 1px solid #fff;
  display: block;
  padding-bottom: 6px;
}

.nav_list .sub li:not(:last-child) {
  margin-bottom: 7px;
}

.nav_list .sub+.hook {
  margin-top: 20px;
}

.nav_list .sub li a {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  display: inline-block;
}

.nav_list .sub li a::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  top: 16px;
  left: 0;
  background-color: #fff;
  z-index: -1;
}

.hamburger {
  position: fixed;
  z-index: 101;
  top: 15px;
  right: 7px;
}

.hamburger span {
  font-size: 12px;
  color: var(--mcolor);
  font-family: var(--f-arial);
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  z-index: -1;
}

.hamburger.is_active .hamburger-inner::before {
  top: -7px;
}

.h_contact .h_btn .box {
  background-color: #212121;
  border-radius: 5px;
  display: block;
  color: #fff;
  line-height: 1em;
  padding: 2px 10px;
  margin: 0 auto;
  text-align: center;
  min-height: 20px;
}

.h_contact .h_btn a {
  height: 60px;
  font-size: 16px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.h_contact .h_btn a::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.h_contact .h_btn a * {
  font-weight: bold;
}

.h_contact .h_btn a .txt {
  line-height: 1.4em;
  display: block;
}

.h_contact_tel {
  margin-right: 25px !important;
}

.h_contact_tel .tel_sub {
  line-height: 1em;
  display: block;
  text-align: center;
}

.h_contact_tel>* {
  line-height: 1.5em;
  color: #fff;
}

.h_contact_tel a {
  display: block;
  font-size: 36px;
  font-family: var(--f-arial);
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.01em;
  border-radius: 5px;
}

.h_contact_tel a span {
  padding-left: 26px;
  background: url("../images/ic_call.svg") left top 12px no-repeat;
}

.h_contact_tel .time {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.custom_tel a span, .h_box .h_contact_tel a span {
  padding-left: 50px;
  background: url("../images/ic_tel.png") left top 2px / 48px 31px no-repeat
}

.custom_tel .time, .h_box .h_contact_tel .time {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  text-align: left;
}

.custom_tel .time::before, .h_box .h_contact_tel .time::before {
  content: '土日も営業中!';
  position: absolute;
  font-size: 16px;
  background-color: #fff;
  color: var(--mcolor);
  padding: 5px 10px 6px;
  border-radius: 60px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.h_contact_mail a {
  width: 16.789em;
  background-color: #F3E600;
  padding: 7px 12px 5px 3.474em;
  border-radius: 5px;
}

.h_contact_mail a::before {
  background: url("../images/ic_mail.svg") center no-repeat;
  background-size: cover;
  width: 2.25em;
  height: 2.25em;
  top: 3px;
  bottom: 0;
  left: 0.789em;
  margin: auto;
}

.h_contact_mail .box {
  font-size: 0.842em;
  width: 9.375em;
}

.h_contact_line a {
  width: 14.158em;
  background-color: #00BA00;
  padding: 7px 12px 5px 3.632em;
  border-radius: 5px;
}

.h_contact_line a::before {
  background: url("../images/ic_line.png") center no-repeat;
  background-size: cover;
  width: 2.25em;
  height: 2.25em;
  top: 2px;
  bottom: 0;
  left: 0.947em;
  margin: auto;
}

.h_contact_line .box {
  font-size: 0.737em;
  width: 10em;
}

.h_contact_line .txt {
  color: #fff;
}

/*==========================================================                M A I N    V I S U A L
==========================================================*/
main {
  position: relative;
  z-index: 2;
  padding-top: 98px;
}

.mv {
  position: relative;
  padding: 0;
}

.mv_bg.init {
  opacity: 1;
}

.mv_sub {
  text-align: center;
  font-size: 1.6em;
}

.mv_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv_slider_ite .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
}

.mv_slider_ite.zoomed .bg {
  animation-name: zoomImg;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes zoomImg {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.line {
  position: relative;
  z-index: 1;
}

.line::before {
  content: "";
  position: absolute;
  background-color: #FFF713;
  width: 103%;
  height: 37.5%;
  bottom: 5px;
  left: -9px;
  transform: skew(-32deg);
  z-index: -1;
}

.mv {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  height: calc(100vh - 98px);
  margin-bottom: 120px;
  display: flex;
  align-items: center;
}

.mv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/mainvs_pc.jpg') center top no-repeat;
  background-size: cover;
  top: 0;
  z-index: -1;
}

.mv_sub {
  padding-bottom: 20px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.mv_bg {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 57%;
    max-width: 1090px;
    padding-right: 30px;
}

.mv_bg_img {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

.mv_bg_img::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mv_map {
  position: relative;
  width: 43%;
  max-width: 782px;
  font-size: 12px;
}

.mv_map .mv_map_txt {
    position: absolute;
    top: 1.3em;
    left: -4em;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: var(--mcolor);
    width: max-content;
}

.mv_txt_frame {
  font-size: 55px;
  padding-left: 2.6em;
}

.mv_txt_sub {
  font-size: 1em;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  line-height: 1.5em;
}

.mv_txt_sub span {
  background-color: var(--scolor);
  line-height: 1.2em;
  display: inline-block;
}

.mv_txt_sub .resize {
  font-size: 89.091%;
}

.mv_txt h2 {
  position: relative;
  z-index: 1;
  font-size: 1.6em;
  font-weight: 900;
  color: var(--mcolor);
  line-height: 1.2em;
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
}
.mv_txt h2 .line {
  display: inline-flex;
  align-items: center;
}
.mv_txt h2 .line span {
  position: relative;
  top: -10px;
}
.mv_txt h2 .line::before {
  transform: unset;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 85%;
}

.mv_txt h2 > span {
  font-size: 125%;
}
.mv_txt {
  position: relative;
  z-index: 2;
}
.mv_txt_box {
  display: flex;
  gap: 20px;
}

.mv_txt_box li {
  font-size: 1em;
}

.mv_txt_box li img {
    width: 4em;
}

.mv_txt_list {
  font-size: 36px;
  max-width: 23.111em;
  width: 100%;
  margin-bottom: 0.5em;
}

.mv_txt_list li {
  position: relative;
  z-index: 1;
  font-size: 1em;
  font-weight: bold;
  padding-bottom: 1px;
  line-height: 1.5em;
  padding: 0.19em 0 0.25em 2.778em;
  color: #fff;
  background-color: var(--mcolor);
}

.mv_txt_list li:not(:last-child) {
  margin-bottom: 5px;
}

.mv_txt_list li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--mcolor);
  z-index: -1;
  top: 0;
  left: 0;
  transform: skew(-16deg);
}

.mv_txt_list li:nth-child(1)::before {
  left: 1.389em;
}

.mv_txt_list li:nth-child(2)::before {
  left: 0.834em;
}

.mv_txt_list li:nth-child(3)::before {
  left: 0.278em;
}

.mv_txt_list li span {
  color: #F3E600;
}

/*==========================================================              M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
  font-weight: bold;
}

.ttl_h3:not(:last-child) {
  margin-bottom: 32px;
}

.ttl_h3 .ja {
  font-size: 40px;
  font-weight: bold;
  color: #212121;
}

.ttl_h3 .en {
  font-size: 14px;
  font-weight: bold;
  color: var(--mcolor);
  font-family: var(--f-arial);
}

/* DEFAUTL NAME BUTTON */
.btn a, .sec01_tab .btn span {
  width: 250px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mcolor);
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.btn.center a {
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.btn_box:not(:last-child) {
  margin-bottom: 30px;
}

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

.element_span.dotted span {
  position: relative;
  z-index: 1;
}

.element_span.dotted span::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--scolor);
  top: 6px;
  left: 15px;
  right: 0;
  margin: auto;
  z-index: -1;
}

/*============= SEC01 ==============*/
.sec01 {
  padding-bottom: 79px;
  position: relative;
  z-index: 1;
}

.sec01::before {
  content: '';
  position: absolute;
  background-color: var(--mcolor);
  width: 102%;
  height: calc(100% - 50px);
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec01_bnr {
  min-height: 30.625em;
  margin-top: -50px;
  border: 10px solid #fff;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.52);
  position: relative;
  z-index: 1;
  background: url("../images/sec1_bg.png") center no-repeat #fff;
  background-size: cover;
  margin-bottom: 71px;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.sec01_bnr::before {
  content: "";
  position: absolute;
  background-color: rgba(17, 153, 158, 0.89);
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
  border-radius: 5px;
}

.sec01_bnr_cnt {
  padding: 3.15em 3.25em 2.8125em 560px;
}

.sec01_bnr_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 31%;
  max-width: 30em;
  height: 100%;
}

.sec01_bnr_img img {
  height: 100%;
  border-radius: 5px 0 0 5px;
}

.sec01_bnr_desc {
  margin-bottom: -13px;
}

.sec01_bnr_desc p {
  font-size: max(1.25em, 14px);
  font-weight: bold;
  color: #fff;
  line-height: 1.75em;
}

.sec01_bnr .ttl_h3_sub {
  background-color: #212121;
  border-radius: 5px;
  line-height: 1.6em;
  color: #fff;
  width: auto;
  display: inline-block;
  font-size: 2.0625em;
  font-weight: bold;
  padding: 0.23em 1.1em 0.23em 0.667em;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}

.sec01_bnr .ttl_h3_sub::before {
  content: "";
  position: absolute;
  background: url("../images/sec1_arrow.svg") center no-repeat;
  width: 1.121em;
  height: 0.909em;
  bottom: -0.515em;
  left: 1.06em;
  z-index: -1;
}

.sec01_bnr .ttl_h3_sub span {
  color: var(--scolor);
  font-size: 115.152%;
}

.sec01_bnr .ttl_h3 {
  font-size: 3.75em;
  margin-bottom: 0.55em;
}

.sec01_bnr .ttl_h3 .ja {
  font-size: 100%;
  color: #fff;
}

.sec01_bnr .ttl_h3 .ja .element_span {
  font-size: 141.667%;
}

.sec01_bnr .ttl_h3 .ja span {
  color: var(--scolor);
}

.sec01_bnr .ttl_h3 .ja .line {
  z-index: -1;
}

.sec01_bnr .ttl_h3 .ja .line::before {
  background-color: #212121;
  transform: skew(-27deg);
  width: 102%;
  height: 46%;
  bottom: 0px;
  left: -5px;
}

.sec01_bnr .btn_box {
  justify-content: flex-end;
}

.sec01_bnr .btn a {
  width: 260px;
  height: 60px;
  color: #212121;
  background-color: #fff;
  font-size: 20px;
}

.sec01_table {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.sec01_table h4 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

.sec01_table .ttl_h4_sub {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 37px;
}

.sec01_table .btn a {
  width: 400px;
  height: 80px;
  font-size: 26px;
}

.sec01_table_scroll {
  display: none;
  max-height: 410px;
  padding-bottom: 5px;
  overflow-y: scroll;
  margin-bottom: 44px;
  border: 1px solid #D5D5D5;
}

.sec01_table_scroll.active {
  display: block;
}

.sec01_table_scroll table {
  width: 1200px;
}

.sec01_table_scroll::-webkit-scrollbar {
  width: 30px;
  height: 31px;
}

.sec01_table_scroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
  border: 6px solid transparent;
  background-clip: content-box;
}

.sec01_table_scroll::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.sec01_table_frame {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #D5D5D5;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.sec01_table_frame th {
  color: #fff;
  font-weight: 500;
  line-height: 1.45em;
  padding: 16px 10px;
  border: 0;
}

.sec01_table_frame td {
  font-weight: 500;
  padding: 16px 15px 18px;
  line-height: 1.45em;
  border-color: var(--mcolor);
  white-space: nowrap;
}

.sec01_table_frame td:not(:last-child) {
  border-right: 2px solid var(--mcolor);
}

.sec01_table_frame thead tr th {
  width: 16.6666666667%;
  border-bottom-color: var(--mcolor);
  border-top-color: #D5D5D5;
  white-space: nowrap;
}

.sec01_table_frame thead tr th:not(:last-child) {
  border-right: 2px solid #fff;
}

.sec01_table_frame thead th {
  background-color: var(--mcolor);
}

/* .sec01_table_frame tbody td:first-child {
  border-left-color: transparent;
}

.sec01_table_frame tbody td:last-child {
  border-right-color: #D5D5D5;
} */
 .tt_flex{display: flex;}
 .tt_flex .ico{display: inline-block;margin-right: 5px;}

.sec01 .sec01_tab {
  margin-bottom: 5px;
}

.sec01 .sec01_tab .btn_box {
  gap: 20px;
}

.sec01 .sec01_tab .btn {
  margin-bottom: 0;
}

.sec01 .sec01_tab .btn span {
  background-color: #fff;
  color: var(--mcolor);
  height: 60px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.sec01 .sec01_tab .btn.active span {
  background-color: var(--scolor);
}

/*============= SEC02 ==============*/
.sec02 {
  padding: 110px 0 109px;
  background-color: #F7F7F7;
}

.sec02 .ttl_h3 {
  margin-bottom: 44px;
}

.sec02 .ttl_h3 .ja {
  margin-right: 4px;
}

.sec02 .ttl_h3 .en {
  position: relative;
  top: 4px;
}

.sec02_frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec02_cnt {
  width: 32%;
  max-width: 455px;
}

.sec02_cnt_desc {
  margin-bottom: 40px;
}

.sec02_cnt_desc p {
  line-height: 2.06em;
  font-size: 190%;
}

.sec02_cnt .btn_box {
  justify-content: flex-start;
}

.sec02_cnt .btn a {
  width: 220px;
  height: 50px;
  background-color: #212121;
  color: #fff;
  font-size: 16px;
}

.sec02_list {
  width: 65%;
  max-width: 1040px;
}

.sec02_item {
  display: flex;
  min-height: 160px;
  gap: 40px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.16);
  padding: 25px 28px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.sec02_item:not(:last-child) {
  margin-bottom: 20px;
}

.sec02_item::before {
  content: "";
  position: absolute;
  background: url("../images/sec2_dc.svg") center no-repeat;
  background-size: cover;
  width: 26px;
  height: 22px;
  top: -4px;
  right: 18px;
  z-index: -1;
}

.sec02_item_ic {
  flex-shrink: 0;
}

.sec02_item h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.txt_note {
  font-size: 12px;
}

/*============= SEC03 ==============*/
.sec03 {
  background-color: #004680;
  padding: 101px 0 110px;
  border-bottom: 10px solid var(--scolor);
}

.sec03_title {
  margin-bottom: 84px;
}

.sec03 .ttl_h3 {
  text-align: center;
  margin-bottom: 4px;
}

.sec03 .ttl_h3 .ja {
  color: #fff;
  font-size: 50px;
}

.sec03 .ttl_h3 .ja .element_span.dotted span {
  color: #fff;
}

.sec03 .ttl_h3 .ja .element_span.dotted span::before {
  width: 8px;
  height: 8px;
  background-color: #fff;
  top: -3px;
}

.sec03 .ttl_h3 .ja span {
  color: var(--scolor);
}

.sec03 .ttl_h3_sub {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.sec03_bnr {
  position: relative;
  z-index: 1;
  min-height: 400px;
  padding-top: 40px;
  width: 95%;
  max-width: 1800px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  transition: 0.2s ease-in-out;
}

.sec03_bnr_img {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  overflow: hidden;
  border-radius: 5px;
}

.sec03_bnr_img::before {
  content: "";
  position: absolute;
  width: 1800px;
  height: 100%;
  background: url("../images/sec3_img1.jpg") right center no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.sec03_bnr_img img {
  display: none;
}

.sec03_bnr_cnt {
  background-color: #fff;
  width: 65%;
  max-width: 800px;
  margin: 0 80px;
  padding: 60px 86px 43px;
  border-radius: 5px 5px 0 0;
}

.sec03_bnr_cnt h4 {
  font-size: 26px;
  color: #212121;
  font-weight: bold;
  margin-bottom: 17px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.sec03_bnr_cnt h4::before {
  content: "";
  position: absolute;
  background: url("../images/sec3_h4_dc.svg") center no-repeat;
  background-size: cover;
  width: 44px;
  height: 37px;
  z-index: -1;
  top: -28px;
  left: -28px;
}

.sec03_bnr_cnt h4 .element_span {
  display: inline-flex;
  gap: 5px;
  font-size: 115.385%;
  margin-right: 3px;
}

.sec03_bnr_cnt h4 .element_span span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  color: #fff !important;
  background-color: var(--mcolor);
  padding-bottom: 5px;
}

.sec03_bnr_cnt h4 span {
  color: var(--mcolor);
}

.sec03_bnr_desc {
  margin-bottom: 17px;
}

.sec03_bnr_desc p {
  line-height: 1.85em;
}

.sec03_bnr_list {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sec03_bnr_list ul {
  width: 350px;
  background-color: #F1F1F1;
  padding: 14px 17px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 17px;
}

.sec03_bnr_list ul li {
  font-weight: bold;
  padding-left: 15px;
  position: relative;
  z-index: 1;
  line-height: 1.85em;
}

.sec03_bnr_list ul li::before {
  content: "";
  position: absolute;
  background: var(--mcolor);
  width: 6px;
  height: 6px;
  top: 13px;
  left: 2px;
  z-index: -1;
  border-radius: 100%;
}

.sec03_bnr_list .btn a {
  width: 150px;
  background-color: #d9d9d9;
}

.sec03_box {
  font-size: min(24px, max(1.25vw, 16px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em 2.708em;
}

.sec03_box_item {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  gap: 1.25em;
  padding: 1.125em 1.458em 1.667em 1.25em;
}

.sec03_box_item h4 {
  font-size: max(1em, 20px);
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 0.625em;
  margin-right: -0.3em;
}

.sec03_box_item .desc {
  flex-grow: 1;
}

.sec03_box_item .desc p {
  line-height: 1.5em;
  font-size: max(0.667em, 14px);
}

.sec03_box_item .btn_box {
  justify-content: flex-end;
}

.sec03_box_item .btn a {
  width: 178px;
  background-color: #d9d9d9;
}

.sec03_box_img {
  flex-shrink: 0;
  margin-top: -1.958em;
}

.sec03_box_img img {
  width: 6.667em;
  height: 11.25em;
  box-shadow: -20px 20px 0 #FFFF00;
}

.sec03_box_info {
  display: flex;
  flex-direction: column;
}

/*============= SEC04 ==============*/
.sec04 {
  background: url("../images/sec4_bg.jpg") top left repeat;
  background-size: 100px 100px;
  padding: 116px 0 119px;
}

.sec04 .ttl_h3 {
  text-align: center;
  margin-bottom: 50px;
}

.sec04_cnt {
  display: flex;
  gap: 50px;
}

.sec04_box {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px 22px 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 510px;
}

.sec04_box h4 {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
}

.sec04_box h4 span {
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.sec04_box h4 span::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.sec04_box_desc {
  text-align: center;
  margin-bottom: 18px;
}

.sec04_box_list {
  background-color: #D6EDFF;
  max-width: 390px;
  margin: 0 auto;
  border-radius: 5px;
  padding: 12px 10px 18px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}

.sec04_box_list ul {
  width: max-content;
  margin: 0 auto;
}

.sec04_box_list ul li {
  padding-left: 40px;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1.95em;
}

.sec04_box_list ul li::before {
  content: "";
  position: absolute;
  background: url("../images/ic_check.svg") center no-repeat;
  width: 17px;
  height: 16px;
  background-size: cover;
  z-index: -1;
  left: 11px;
  top: 10px;
}

.sec04_box .btn a {
  width: 178px;
  background-color: #212121;
}

.sec04_box:nth-child(2), .sec04_box:nth-child(3) {
  max-width: 470px;
}

.sec04_box.item1 h4 span::before {
  background: url("../images/sec4_h4_dc1.svg") center no-repeat;
  background-size: cover;
  width: 31px;
  height: 31px;
  top: 4px;
  left: 1px;
}

.sec04_box.item2 h4 span::before {
  background: url("../images/sec4_h4_dc2.svg") center no-repeat;
  background-size: cover;
  width: 27px;
  height: 32px;
  top: 4px;
  left: 2px;
}

.sec04_box.item3 h4 span::before {
  background: url("../images/sec4_h4_dc3.svg") center no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
  top: 6px;
  left: 2px;
}

/*============= SEC05 ==============*/
.sec05 {
  background-color: #F7F7F7;
  text-align: center;
  padding: 104px 0 103px;
}

.sec05 .ttl_h3 {
  margin-bottom: 39px;
}

.sec05 .desc {
  margin-bottom: 56px;
}

.sec05 .desc p {
  line-height: 1.85em;
}

.sec05_cnt {
  font-size: 26px;
  display: flex;
  justify-content: center;
  gap: 1.923em;
  width: 95%;
  max-width: 1510px;
  margin: 0 auto;
}

.sec05_box {
  width: 32%;
  max-width: 470px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1.64em 1.154em 1.5em;
  display: flex;
  flex-direction: column;
}

.sec05_box h4 {
  font-size: max(1em, 20px);
  font-weight: bold;
  margin-bottom: 0.538em;
}

.sec05_box_img {
  margin-bottom: 0.98em;
}

.sec05_box_img img {
  width: auto;
  height: 7.615em;
}

.sec05_box .desc {
  flex-grow: 1;
  margin-bottom: 0.654em;
}

.sec05_box .desc p {
  font-size: max(0.615em, 14px);
}

.sec05_box .btn a {
  width: 178px;
  background-color: #212121;
}

/*============= SEC06 ==============*/
.sec06 {
  padding: 105px 0 124px;
}

.sec06 .ttl_h3 {
  text-align: center;
  margin-bottom: 12px;
}

.sec06 .ttl_h3 .ja {
  font-size: 50px;
}

.sec06 .ttl_h3_sub {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 44px;
}

.sec06_frame {
  font-size: 16px;
  display: flex;
  gap: 3.125em;
  justify-content: space-between;
  align-items: flex-start;
}

.sec06_cnt {
  position: relative;
  z-index: 1;
  width: 100%;
}

.sec06_info {
  position: relative;
  z-index: 1;
}

.sec06_cnt::before {
  content: "";
  position: absolute;
  background: url("../images/line_dash.png") top center no-repeat;
  background-size: cover;
  width: 1920px;
  height: 1px;
  left: calc(50% - 690px);
  top: max(8.1em, 114px);
}

.sec06_cnt ul {
  display: flex;
  gap: 20px;
}

.sec06_cnt ul li {
  width: calc(100% / 6);
  font-size: 1em;
  position: relative;
  z-index: 1;
}

.sec06_cnt ul li h4 {
  font-size: max(1.25em, 18px);
  font-weight: bold;
  color: #212121;
  margin-bottom: 5px;
}

.sec06_cnt ul li .desc p {
  font-size: max(1em, 12px);
  line-height: 1.5em;
}

.sec06_num {
  position: absolute;
}

.sec06_icon {
  position: relative;
  z-index: 2;
  width: 6.25em;
  height: 6.25em;
  border: 2px solid var(--mcolor);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #BEE1FF;
  margin-bottom: 10px;
  margin-left: auto;
}

.sec06_icon_num {
  position: relative;
  z-index: 1;
  font-family: var(--f-arial);
  font-size: 20px;
  font-weight: bold;
  background-color: var(--mcolor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  padding: 2px 10px;
  margin-bottom: 5px;
  gap: 5px;
  border-radius: 50px 0 0 50px;
}

.sec06_icon_num span {
  letter-spacing: 0.05em;
}

.sec06_icon::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 16px;
  background-color: var(--mcolor);
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 100%;
  z-index: -1;
}

.sec06_box {
  width: 50%;
  max-width: 450px;
  border: 1px solid #AAAAAA;
  border-radius: 10px;
  padding: 1.9375em 1.25em 1.5em;
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
  z-index: 2;
}

.sec06_box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sec06_box li {
  font-size: max(1.125em, 16px);
  font-weight: bold;
  padding: 4px 3px 2px;
  background-color: #fff;
  color: #212121;
  border-radius: 5px;
  border: 1px solid #D4D4D4;
}

.sec06_box_logo {
  margin-bottom: 1.4375em;
}

/*============= SEC07 ==============*/
.sec07 {
  background-color: #004680;
}

.sec07_bg {
  position: relative;
  z-index: 1;
  height: 470px;
  overflow: hidden;
}

.sec07_bg::before {
  content: "";
  position: absolute;
  background: url("../images/sec7_bg.jpg") center no-repeat;
  background-size: cover;
  width: 100%;
  height: 1277px;
  top: -80px;
  bottom: 0;
  left: -7px;
  right: 0;
  margin: auto;
}

.sec07_bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ABABAB;
  opacity: 0.41;
  mix-blend-mode: multiply;
}

.sec07_bg img {
  position: absolute;
  top: 40px;
  left: 18px;
  mix-blend-mode: overlay;
}

.sec07_cnt {
  width: 79%;
  max-width: 93em;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.sec07_cnt .txt_note {
  color: #fff;
  position: absolute;
  left: -28em;
  bottom: 30px;
  width: 100%;
}
.sec07_cnt .slick-dots {
  bottom: -40px;
}
.sec07_cnt .slick-dots li {
  width: 15px;
  height: 15px;
}
.sec07_cnt .slick-dots li.slick-active button {
  background-color: #fff;
  opacity: 1;
}
.sec07_cnt .slick-dots li button {
    border-radius: 50%;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.sec07_bottom .slick-dots li button::before {
  display: none;
}

.sec07_bottom .slick-dots button {
    background-color: #fff;
}

.sec07_frame {
  padding-right: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 6.25em 2em 6.25em 0;
  font-size: 16px;
  gap: 5.0625em;
  max-width: 1920px;
  margin: 0 auto;
}

.sec07_img {
  margin-left: -8px;
  width: 17%;
  max-width: 20.75em;
}

.sec07_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 30px;
}

.sec07_top .ttl_h3 {
  font-size: 1em;
  margin-bottom: 6px;
}

.sec07_top .ttl_h3>span {
  display: block;
}

.sec07_top .ttl_h3 .en {
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  width: 140px;
  height: 30px;
  padding-top: 3px;
  margin-bottom: 7px;
}

.sec07_top .ttl_h3 .ja {
  font-size: 3.125em;
  color: #fff;
}

.sec07_top .ttl_h3 .ja span {
  color: var(--scolor);
}

.sec07_top .desc p {
  color: #fff;
  font-size: max(1.125em, 16px);
  font-weight: 500;
}

.sec07_top_btn {
  padding-bottom: 7px;
}

.sec07_top_btn .btn a {
  width: 220px;
  height: 50px;
  background-color: #fff;
  color: #212121;
  font-size: 16px;
}

.sec07_bottom {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5em;
  flex-grow: 1; */
}
.sec07_bottom .item {
  font-size: 16px;
  margin: 0 10px;
  width: 25.625em;
}
.sec07_bottom .item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.sec07_bottom * {
  color: #fff;
}

.sec07_bottom .item {
  border-radius: 5px;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  padding: 0.875em 1.1875em 1.8125em 0.875em;
  transition: 0.2s ease-in-out;
}

.sec07_bottom .item:nth-child(2) .img, .sec07_bottom .item:nth-child(3) .img {
  margin-bottom: 24px;
}

.sec07_bottom .item:nth-child(2) h4, .sec07_bottom .item:nth-child(3) h4 {
  font-size: 1.3125em;
}

.sec07_bottom .item .img {
  margin-bottom: 1.2em;
}

.sec07_bottom .item .img img {
  border-radius: 5px;
  margin: 0 auto;
}

.sec07_bottom .item h4 {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 21px;
  position: relative;
  z-index: 1;
}

.sec07_bottom .item h4 sup {
  font-size: 0.4166em;
  position: absolute;
  top: -5px;
}

.sec07_bottom .item .desc {
  margin-bottom: 1.4375em;
  position: relative;
}

.sec07_bottom .item .desc sup {
  position: absolute;
  top: -1.2em;
  font-size: 0.6em;
}

.sec07_bottom .item .desc p {
  line-height: 1.6em;
  font-size: 1em;
}

.sec07_bottom .item .desc .txt_note {
  font-size: 0.75em;
}

.sec07_bottom .item::before {
  content: "";
  position: absolute;
  background-color: var(--mcolor);
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
}

.sec07_bottom .item ul {
  background-color: #DEFCFF;
  border-radius: 5px;
  padding: 12px 11px 17px;
}

.sec07_bottom .item ul li {
  font-size: max(1em, 14px);
  font-weight: bold;
  padding-left: 1.8em;
  text-align: left;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
}

.sec07_bottom .item ul li::before {
  content: "";
  position: absolute;
  background: url("../images/ic_check.svg") center no-repeat;
  background-size: cover;
  width: 0.945em;
  height: 0.889em;
  top: 0.4em;
  left: 0.35em;
  z-index: -1;
}

.sec07_bottom .item ul li:not(:last-child) {
  margin-bottom: 6px;
}

.sec07_bottom .item ul li span {
  color: #212121 !important;
  background: url("../images/line_dash_m.png") left bottom repeat-x;
  padding-bottom: 2px;
  background-size: 6px 1px;
}

/*============= SEC08 ==============*/
.sec08 {
  padding: 102px 0 81px;
}

.sec08_frame {
  display: flex;
  justify-content: space-between;
  gap: 6.25em;
  margin-bottom: 90px;
  font-size: 16px;
}

.sec08_img {
  margin-top: 10px;
}

/* .sec08_img .btn_box {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  margin: auto;
} */

.sec08_img .btn a {
  width: 240px;
  height: 50px;
  background-color: #212121;
}

.sec08_cnt {
  width: 100%;
  max-width: 100%;
}

.sec08_cnt .ttl_h3 {
  margin-bottom: 1.367em;
  font-size: 1.875em;
}

.sec08_cnt .ttl_h3 .ja {
  font-size: 100%;
  line-height: 1.667em;
}

.sec08_cnt .desc {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.sec08_cnt .desc p {
  font-size: 1em;
  line-height: 1.875em;
}

.sec08_logo {
  margin-bottom: 3.4375em;
}

.sec08_left_frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 469px;
}

.sec08_left_frame .director {
  font-family: var(--f-nsr);
  font-size: 1.375em;
  font-weight: bold;
}

.sec08_left_frame .director span {
  font-size: 200%;
  margin-left: 19px;
  position: relative;
  top: -3px;
}

.sec08_left_desc {
    padding-left: 4.25em;
    width: 69%;
    max-width: 1155px;
    flex-shrink: 0;
}

.sec08_left_desc::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #212121;
  top: 1.5625em;
  left: 0;
  z-index: -1;
}

.sec08_left_img {
  width: 47%;
  max-width: 423px;
  flex-shrink: 0;
  margin: 0;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  right: 0;
  top: 0;
}

.sec08_left_img .qualify {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.62em;
  bottom: 9.529em;
  right: 4.411em;
  font-size: 100%;
  font-weight: 500;
  width: 27em;
  padding: 0.588em 1em 0.647em;
}

.sec08_left_img .qualify::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: skew(-16deg);
}

.sec08_left_img .qualify span {
  font-size: 111.765%;
  letter-spacing: -0.03em;
  font-weight: bold;
}

.sec08_bnr {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 5px solid var(--mcolor);
  border-radius: 5px;
  background-color: #D4EBFF;
  padding: 0 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 16px;
}

.sec08_bnr_left, .sec08_bnr_right {
  width: 30%;
  max-width: 18.75em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sec08_bnr_left::before, .sec08_bnr_right::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.sec08_bnr_left::before {
  background: url("../images/sec8_img3_dc.png") center no-repeat;
  background-size: cover;
  width: 9.6875em;
  height: 21.9375em;
  top: -2.25em;
  left: 2.1875em;
  z-index: 1;
}

.sec08_bnr_right::before {
  background: url("../images/sec8_img4_dc.png") center no-repeat;
  background-size: cover;
  width: 7.6875em;
  height: 22.25em;
  top: -2.5625em;
  right: 1.625em;
  z-index: 1;
}

.sec08_bnr_center {
  width: 100%;
}

.sec08_bnr_center .ttl_h3 {
  width: calc(100% - 10px);
  margin: -25px auto 24px;
  text-align: center;
  background-color: var(--mcolor);
  padding: 0.433em 0.466em 0.5em;
  border-radius: 5px;
  font-size: 1.875em;
}

.sec08_bnr_center .ttl_h3 .ja {
  color: #fff;
  font-size: 100%;
}

.sec08_bnr_center .desc {
  margin-bottom: 21px;
}

.sec08_bnr_center .desc p {
  font-size: max(1em, 14px);
  text-align: center;
  line-height: 1.875em;
}

.sec08_bnr_center ul {
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 2.875em;
  padding: 0.6875em 0.75em 0.8125em;
  margin-bottom: 1.3em;
}

.sec08_bnr_center ul li {
  font-size: 1.0625em;
  font-weight: bold;
  line-height: 1.5em;
}

.sec08_bnr_center ul li span {
  padding-left: 1.75em;
  position: relative;
  z-index: 1;
}

.sec08_bnr_center ul li span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_check.svg") center no-repeat;
  width: 17px;
  height: 16px;
  background-size: cover;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.sec08_bnr_center .btn {
  font-size: 1.125em;
}

.sec08_bnr_center .btn a {
  width: 18.667em;
  height: 3.888em;
  background-color: #212121;
  font-size: 100%;
  padding-bottom: 2px;
}

.sec08_bnr_frame {
  width: 90%;
  max-width: 43.75em;
  margin: 0 auto;
}

.sp375, .sp475 {
  display: none;
}

/*==========================================================                      F O O T E R
==========================================================*/
footer {
  position: relative;
  z-index: 3;
}

address {
  background-color: var(--mcolor);
  padding: 20px;
  color: #fff;
  text-align: center;
}

footer {
  padding-bottom: 59px;
}

.sec09 {
  padding: 62px 0 72px;
  background-color: #F7F7F7;
  border-top: 10px solid var(--mcolor);
}

.sec09 .ttl_h3 {
  text-align: center;
  padding-bottom: 21px;
  position: relative;
  z-index: 1;
  margin-bottom: 37px;
}

.sec09 .ttl_h3::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  background-color: var(--mcolor);
}

.sec09 .ttl_h3 .ja {
  font-size: 43px;
}

.sec09 .ttl_h3 .ja span {
  color: var(--mcolor);
}

.sec09 .desc {
  text-align: center;
  margin-bottom: 49px;
}

.sec09 .desc p {
  line-height: 1.875em;
}

.sec09_cnt {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.sec09_box {
  width: 50%;
  max-width: 540px;
  padding: 40px 49px 35px;
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.16);
}

.sec09_box_right {
  background-color: var(--mcolor);
}

.sec09_box_right h4 {
  color: #fff;
  margin-bottom: 27px !important;
}

.sec09_box_right .desc {
  color: #fff;
  margin-left: -15px;
  width: calc(100% + 30px);
  margin-bottom: 33px;
}

.sec09_box_right .sec09_box_btn {
  margin-bottom: 26px;
}

.sec09_box_right .sec09_box_btn a {
  background-color: var(--scolor);
  color: #212121;
  letter-spacing: -0.03em;
  padding: 18px 25px;
}

.sec09_box_right .sec09_box_btn a span::before {
  background: url("../images/ic_mail.svg") center no-repeat;
  background-size: cover;
  width: 43px;
  height: 43px;
  top: 0;
  bottom: 0;
  left: 2px;
  margin: auto;
}

.sec09_box_right .sec09_box_btn a .box {
  color: #fff;
  padding: 2px 33px;
  margin: 0 auto 5px;
}

.sec09_box h4 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.sec09_box_tel {
  text-align: center;
  margin-bottom: 18px;
}

.sec09_box_tel a {
  color: var(--mcolor);
  font-size: 59px;
  font-family: var(--f-arial);
  font-weight: bold;
  letter-spacing: 0.01em;
  display: block;
  line-height: 1em;
}

.sec09_box_tel a span {
  padding-left: 45px;
  position: relative;
  z-index: 1;
}

.sec09_box_tel a span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_call_clr.svg") center no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  top: 10px;
  bottom: 0px;
  margin: auto;
  left: 1px;
  z-index: -1;
}

.sec09_box_tel .time {
  line-height: 1.7em;
  margin-bottom: 0;
}

.sec09_box_tel .tel_sub {
  line-height: 1em;
}

.sec09_box_btn .btn {
  line-height: 1.5em;
}

.sec09_box_btn .btn:not(:last-child) {
  margin-bottom: 20px;
}

.sec09_box_btn a {
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 25px 25px 26px;
  color: #fff;
  font-size: 26px;
  line-height: 1.5em;
}

.sec09_box_btn a>span {
  padding-left: 51px;
  position: relative;
  z-index: 1;
}

.sec09_box_btn a>span::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.sec09_box_btn a .box {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  background-color: #212121;
  border-radius: 5px;
  text-align: center;
  width: max-content;
  margin: 0 auto 3px;
  padding: 2px 21px;
  line-height: 1em;
}

.sec09_box_mail a {
  background-color: #212121;
  letter-spacing: -0.03em;
}

.sec09_box_mail a span::before {
  background: url("../images/ic_mail2.svg") center no-repeat;
  background-size: cover;
  width: 32px;
  height: 31px;
  top: 1px;
  bottom: 0;
  left: 2px;
  margin: auto;
}

.sec09_box_line a {
  background-color: #00BA00;
  padding: 17px 25px 15px;
  font-size: 30px;
}

.sec09_box_line a span {
  padding-left: 56px;
}

.sec09_box_line a span::before {
  background: url("../images/ic_line.png") center no-repeat;
  background-size: cover;
  width: 44px;
  height: 40px;
  top: 0;
  bottom: 0;
  left: 2px;
  margin: auto;
}

.sec09_box_note {
  color: #fff;
  text-align: center;
}

.ft_cnt {
  font-size: 16px;
  padding: 4.9375em 0 2.5em;
  display: flex;
  gap: 8.3125em;
}

.ft_info_img {
  margin-bottom: 15px;
}

.ft_info_cnt {
  font-size: 1em;
  font-weight: bold;
  line-height: 2.15em;
  margin-bottom: 9px;
}

.ft_info_cnt span {
  font-size: 140%;
}

.ft_info_cnt .address {
  font-size: 1em;
  font-weight: 500;
}

.ft_info_contact {
  display: flex;
  align-items: center;
  gap: 1.125em;
}

.ft_info_tel {
  margin-bottom: 0;
  font-size: 100%;
}

.ft_info_tel a {
  font-size: 2.8125em;
  font-family: var(--f-arial);
  font-weight: bold;
  color: var(--mcolor);
  display: block;
}

.ft_info_tel a span {
  padding-left: 0.889em;
  position: relative;
  z-index: 1;
}

.ft_info_tel a span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_call_clr.svg") center no-repeat;
  background-size: cover;
  width: 0.667em;
  height: 0.667em;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.ft_info_time {
  font-weight: 500;
  line-height: 1.38em;
  color: var(--mcolor);
  position: relative;
  top: -1px;
  font-size: 100%;
}

.ft_menu {
  padding-top: 4px;
  flex-grow: 1;
  flex-shrink: 0;
}

.ft_menu .ttl {
  font-weight: 500;
  padding-bottom: 0.375em;
  border-bottom: 1px solid #212121;
  margin-bottom: 1em;
}

.ft_menu_sub li {
  line-height: 1.75em;
}

.ft_menu ul:not(:last-child) {
  margin-bottom: 20px;
}

.ft_menu_sub li a {
  position: relative;
  z-index: 1;
  padding-left: 1.875em;
  display: inline-block;
}

.ft_menu_sub li a::before {
  content: "";
  position: absolute;
  width: 0.9375em;
  height: 2px;
  top: 0.875em;
  left: 0;
  background-color: #212121;
  z-index: -1;
}

.ft_menu_sub li:not(:last-child) {
  margin-bottom: 0.75em;
}

.ft_menu>ul {
  display: flex;
  gap: 5em;
}

.ft_menu>ul>li {
  min-width: 15em;
  font-size: 100%;
}

.ft_map {
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-bottom: 38px;
}

.ft_map iframe {
  width: 100%;
  height: 460px;
  border-radius: 10px;
}

.ft_logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.iBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  max-width: 680px;
  margin: 0 auto 30px;
}

.sec09+.inner {
  display: flex;
  flex-direction: column;
}

.sec09+.inner>* {
  order: 1;
}

.sec09+.inner>.ft_logo {
  order: 2;
}

/* BACK TO TOP */
.to_top {
  position: fixed;
  z-index: 9;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}

.to_top.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.sp440 {
  display: none;
}
.sec_table_tab .tb_scroll {
    display: none;
}
.sec_table_tab .tb_scroll.active {
    display: block;
}
.sec_table_tab .tb_scroll.col10 th:not([class]) {
    width: calc(100% / 10);
    white-space: nowrap;
    text-align: center;
}
nav .h_right{display: none !important;}
.btn_viewmore{margin-top: 50px;}
.btn_viewmore a{width: 280px;height: 60px;font-size: 18px;}
.tabs{display: grid;grid-template-columns: repeat(3,1fr);gap:5px;}
.tabs li{display: flex;justify-content: center;align-items: center;height: 60px;background-color: var(--mcolor);color: #FFF;font-weight: bold;font-size: 20px;border-radius: 5px 5px 0 0;cursor: pointer;}
.tabs li.active,.tabs li:hover{background-color: var(--scolor);color: var(--mcolor);}
.btn_wh a{background-color: #FFF;color: var(--mcolor);}
.max_w1100{max-width: 1100px;margin-left: auto;margin-right: auto;}
.tabs_wh li{background-color: #FFF;color: var(--mcolor);}

/*==========================================================================*/
/*                 F O R   S P E C I F I E D   B R O W S E R                */
/*==========================================================================*/
/* EDGE  */
/* FIREFOX */
@-moz-document url-prefix() {}

/* Safari 10.1+ (which is the latest version of Safari at this time) */
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
}
