@charset "utf-8";

/*--- テスト ---*/
.txt-anime {
    display: block;
    width: fit-content;
    color: transparent;
    font-size: 100px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 60px;
    margin-inline: auto;
    background-image: url(../img/hd-img01.jpg);
    background-repeat: no-repeat;
    background-size: 1000px;

    -webkit-background-clip: text;
    overflow: hidden;
}
:root {
    --color-bk: #000;
    --color-wh: #fff;
    --color-gray: #EAEAEA;
    --color-bl: #222365;
    --color-nav: #0C0D3E;
    --color-ye: #EBCE43;
    --color-grad: linear-gradient(0deg,#EBCE43 0%, #FBEF7D 100%);
    --txt-size: 18px;
    --txt-lh: 1.5;
    --inner-size: 1000;
}
html, body {
    color: var(--color-nav);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: var(--txt-size);
    font-weight: 400;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--color-bl);
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal
}
#tpage { color: var(--color-wh); }
* { min-height: 0vw; }
.hidden { display: none; }
/* google recaptcha */
.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0;
}
h1, .sizeh1 { font-size: 38px; }
h2, .sizeh2 { font-size: 36px; }
h3, .sizeh3 { font-size: 32px; }
h4, .sizeh4 { font-size: 24px; }
h5, .sizeh5 { font-size: 20px; }
h6, .sizeh6 { font-size: 18px; }

.sec-tit {
    text-align: center;
    margin-bottom: 2rem;
}
.sec-tit p {
    line-height: 1;
    margin-bottom: 0;
}

/*--- aタグ ---*/
a, a:hover, a:focus { text-decoration: none; outline: none; }
a {
    color: #127aca;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
a:hover, a:focus { color: #00028A; }
a::before, a::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

a.anchorpoint {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

/*--- imgタグ ---*/
img {
    width: auto;
    max-width: 100%;
    height: auto;
}
.radius22 { border-radius: 22px; }

/*--- マウスカーソルで選択したテキストの色と背景色 ---*/
::selection {
    /*color: var(--color-wh);*/
    background-color: rgba(18, 122, 202, 0.15);
}

/*--- 共通 ---*/
p {
    margin: 0 auto 1rem;
	padding: 0;
    line-height: 1.9;
    letter-spacing: 0.02em;
}
.txt-ja { font-family: sans-serif; }
.txt-cp { font-size: 16px; }
.txt-lh1 { line-height: 1.4; }
.txt-lh2 { line-height: 2.2; }
.color-bl { color: var(--color-bl); }
.color-nav { color: var(--color-nav); }
.color-ye { color: var(--color-ye); }
.color-bk { color: var(--color-bk); }
.color-wh { color: var(--color-wh); }
.bg-nav { background-color: var(--color-nav); }
.bg-bl { background-color: var(--color-bl); }
.bg-ye { background-color: var(--color-ye); }
.bg-wh { background-color: var(--color-wh); }
.bg-gray { background-color: #EAEAEA; }
.bg-none { background-color: transparent; }

.txt-marker {
    line-height: 1.6;
    font-weight: bold;
    display: block;
    width: fit-content;
    padding: 0 0.1em;
    background: linear-gradient(0deg, transparent 0%, var(--color-ye) 0%, var(--color-ye) 4px, transparent 4px);
}

/* --- flex-box --- */
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.grid2 { grid-template-columns: repeat(2, 1fr) }
.grid3 { grid-template-columns: repeat(3, 1fr) }
.grid4 { grid-template-columns: repeat(4, 1fr) }
.grid5 { grid-template-columns: repeat(5, 1fr) }
.grid-gap0 { grid-gap: 0!important; }

.row {
    margin-right: -20px;
    margin-left: -20px;
}
.row > * {
    padding-right: 20px;
    padding-left: 20px;
}

/*--- overlap-box ---*/
.overlap-box .overlap-txt {
    position: relative;
    z-index: 10;
    display: block;
    width: fit-content;
    margin-top: -10rem;
    margin-left: auto;
    padding: 3rem 2.5rem;
}
.overlap-box .overlap-txt .txt-wrap {
    position: relative;
    z-index: 10;
}
.overlap-box .overlap-txt .txt-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
}
.overlap-box .overlap-txt .txt-wrap p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
.overlap-box .overlap-img {
    position: relative;
    width: 70%;
    aspect-ratio: 25 / 13;
}
.overlap-box .overlap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlap-box .overlap-txt::before,
.overlap-box .overlap-img::before {
    content: '';
    display: block;
    width: calc(100% + 34px);
    height: calc(100% + 34px);
    position: absolute;
    top: -17px;
    left: -17px;
    background-color: transparent;
    border: 1px solid #EBCE43;
}
.overlap-box.reverse-box .overlap-txt { margin-left: 0; }
.overlap-box.reverse-box .overlap-img { margin-left: auto; }

/*--- ul ---*/
ul.list-2col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    width: fit-content;
    grid-gap: 5px 3rem;
    grid-template-columns: repeat(2, auto);
}

/*--- table ---*/
table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
table tr:first-child { border-top: 1px solid #D9D9D9; }
table tr { border-bottom: 1px solid #D9D9D9; }
/*table tr > *:not(:last-child) { border-right: 1px solid #707070; }*/
table tr th, table tr td {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.02em;
    padding: 24px;
    vertical-align: middle;
}

table.table-data { margin-bottom: 20px; border: 1px solid #D9D9D9; }
table.table-data tr th,
table.table-data tr td {
    font-size: 16px;
    padding: 12px;
}
table.table-data tr th {
    text-align: center;
    background-color: #EFEFEF;
}
table.table-data tr > *:not(:last-child) { border-right: 1px solid #D9D9D9; }

/*--- .row-map ---*/
.row-map {
    line-height: 0;
    width: 100%;
    overflow: hidden;
}
.row-map iframe {
    width: 100%;
    height: 340px;
}

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00 a,
.rela-btn > span {
    color: #0C0D3E;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: inline-block;
    width: auto;
    min-width: 180px;
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 46px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: #fff;
}
.btn00 a:hover,
.rela-box:hover .rela-btn > span { background-color: #EBCE43; }

/* --------------------------------------------
    ナビゲーション
-------------------------------------------- */
#hd01 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 86px;
    transition: all 0.4s ease;
    background-color: var(--color-nav);
/*
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
*/
}
.hd-logo {
    width: 160px;
    display: flex;
    align-items: center;
    margin-left: 1.8%;
}
.hd-logo a { line-height: 1; }

/*--- LIST STYLE ---*/
#g-nav { flex: 1; }
.g-nav-list {
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    max-width: none;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}
.nav-list > li {
    height: 100%;
    margin: 0 1.4em;
}
.nav-list > li:not(:last-child) { margin-bottom: 0; }
.nav-list > li a {
    color: var(--color-wh);
    font-size: 18px;
    font-weight: 400;
    line-height: 86px;
    letter-spacing: 0.02em;
    position: relative;
    display: block;
    padding: 0;
    cursor: pointer;
}
.nav-list > li a:hover { color: var(--color-wh); }
.nav-list > li a::after {
    content: "";
    display: block;
    width: 2em;
    height: 1px;
    position: absolute;
    bottom: 25px;
    left: calc(50% - 1em);
    background-color: var(--color-ye);
    transform: scaleX(0);
    transform-origin: right center;
}
.nav-list > li a:hover::after { transform: scaleX(1); }


/*--- OPEN NAVI ---*/
#g-nav.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100vh;
}
/*--- MENU / CLOSE BTN ---*/
.openbtn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 68px;
}
.openbtn::before {
    content: "menu";
    color: var(--color-wh);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    position: absolute;
    top: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.openline {
    display: block;
    width: 40px;
    height: 26px;
    position: relative;
	cursor: pointer;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
}
.openbtn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    border-radius: 0;
	background-color: var(--color-wh);
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
  }
.openbtn span:nth-of-type(1) { top: 0; }
.openbtn span:nth-of-type(2) { top: 10px; }

/* OPEN Anime */
#g-nav.panelactive .openbtn::before {
    content: "close";
    color: var(--color-wh) !important;
    letter-spacing: 0.1em;
}
.openbtn.active span { width: 36px!important; }
.openbtn.active span:nth-of-type(1) { top: -3px !important; }
.openbtn.active span:nth-of-type(2) { top: 4px !important; }
.openbtn span:nth-of-type(1) { animation: menu07-bar01 .75s forwards; }
@keyframes menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
.openbtn span:nth-of-type(3) { animation: menu07-bar02 .75s forwards; }
@keyframes menu07-bar02 {
    0% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(-26deg); }
    50% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
/* CLOSE Anime */
.openbtn.active span:nth-of-type(1) { animation: active-menu07-bar01 .75s forwards; }
@keyframes active-menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
}
.openbtn.active span:nth-of-type(2) { animation: active-menu07-bar03 .75s forwards; }
@keyframes active-menu07-bar03 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, -2px); transform: translate(-50%, -2px) rotate(0); }
    100% { -webkit-transform: translate(-50%, -2px); transform: translate(-50%, -2px) rotate(-26deg); }
}
@media screen and (min-width: 992px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 991px) {
    #hd01 { height: 68px; }
    .hd-logo { width: 152px; margin-left: 4vw; }
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 25px 0 40px;
        position: absolute;
        top: 68px;
        right: 0;
        background-color: var(--color-nav);
    }
    #g-nav.panelactive .g-nav-list { opacity: 1; visibility: inherit; }
    .nav-list {
        display: block;
        height: auto;
    }
    .nav-list > li { margin: 0; }
    .nav-list > li a {
        line-height: 62px;
        padding: 0 2.5em;
    }
    .nav-list > li a:hover::after { display: none; }
}
@media screen and (max-width: 575px) {
    .g-nav-list { max-width: none; }
    #g-nav .g-nav-list { max-width: none; }
}


/* --------------------------------------------
    Content
-------------------------------------------- */
section {
    position: relative;
}
.sec-inner {
    box-sizing: content-box;
    container-type: inline-size;
    max-width: calc(var(--inner-size)* 1px);
    padding-right: calc(50 / var(--inner-size) * 100cqi);
    padding-left: calc(50 / var(--inner-size) * 100cqi);
    margin-inline: auto;
}
.sec-inner-start { padding-left: calc(50 / var(--inner-size) * 100cqi); }
.sec-inner-end { padding-right: calc(50 / var(--inner-size) * 100cqi); }
.content-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*---------- sec00 ----------*/
.main-slider,
.main-slider .swiper-slide img {
    height: 100%;
    max-height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.main-slider .swiper-wrapper,
.main-slider .swiper-slide,
.main-slider .swiper-slide img { height: 100% !important; }
.main-slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
}
.sec00-txt {
    display: block;
    width: 70%;
    max-width: 700px;
    position: absolute;
    bottom: 1.8rem;
    left: 2.2%;
    z-index: 50;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

/*---------- sec01 ----------*/
.sec01-box .item-txt {
    width: 24em;
    margin-top: 12em;
}
.sec01-box .item-img {
    flex: 1;
}
.sec01-box .item-img img {
    width: 115%;
    max-width: none;
    transform: translateX(-5%);
}

.sec01-box .item-txt .sec01-tit {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 4px 12px;
}
.sec01-box .item-txt .sec01-tit::before,
.sec01-box .item-txt .sec01-tit::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
}
.sec01-box .item-txt .sec01-tit::before {
    border-left: solid 4px;
    border-top: solid 4px;
    top: -4px;
    left: -4px;
}
.sec01-box .item-txt .sec01-tit::after {
    border-right: solid 4px;
    border-bottom: solid 4px;
    bottom: -14px;
    right: 0;
}
.sec01-box .item-txt .sec01-tit .tit01 { margin-bottom: 2px;}
.sec01-box .item-txt .sec01-tit .tit02 { letter-spacing: -0.01em; margin-left: auto; margin-right: 10px; }
.sec01-box .item-txt .sec01-txt > p {
    text-align: justify;
    letter-spacing: 0.04em;
}

/*---------- sec02 ----------*/
.sec02::before,
.sec03::before {
    content: '';
    display: block;
    width: min(40vw, 400px);
    height: min(42vw, 440px);
    position: absolute;
    top: 100%;
    z-index: 0;
    transform: translateY(-50%);
    background-color: transparent;
    background-image: url(../img/bg-mark01.png);
    background-size: contain;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
}
.sec02::before {
    right: 0;
    background-position: center right;
}
.sec03::before {
    width: min(32vw, 330px);
    height: min(36vw, 360px);
    left: 0;
    transform: translateY(-50%) scale(-1, 1);
    background-position: center left;
}

.sec02 .sec-tit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 17.5vw;
}
.sec02 .sec-tit p {
    font-size: 17.5vw;
    font-weight: 800;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.05;
}

.sec02-box {
    position: relative;
    z-index: 10;
    grid-gap: 30px;
    margin: 2rem auto 3rem;
}
.sec02-box .sec02-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-nav);
    border-radius: 100vmax;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}
.sec02-box .sec02-item .sec02-tit {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    min-height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*---------- sec04 ----------*/
.sec04-box {
    grid-template-columns: repeat(2, calc(50% - 20px));
    align-items: flex-start;
    gap: 40px;
}

/*---------- sec05 ----------*/
.sec05 { overflow-x: hidden; }
.sec05-box .overlap-txt .txt-wrap p {
    width: 100%;
    max-width: 22em;
}

/*---------- sec06 ----------*/
.sec06-box { grid-gap: 42px; }
.sec06-box .sec06-item {
    height: 168px;
}
.sec06-box .sec06-item a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.sec06-box .sec06-item .cp {
    font-size: 22px;
    font-weight: 500;
}
.sec06-box .sec06-item .tel {
    position: relative;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.046em;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
}
.sec06-box .sec06-item .tel::before {
    content: '';
    display: inline-block;
    width: 39.14px;
    height: 31.21px;
    background-color: transparent;
    background-image: url(../img/icon-tel.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sec06-box .item01 a:hover {
    color: var(--color-nav);
    background-color: var(--color-wh);
}
.sec06-box .sec06-item .rela-btn > span { border: 1px solid; }
.sec06-box .sec06-item .rela-box:hover .rela-btn > span { border-color: var(--color-ye); }


/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage {
    color: var(--color-bk);
    background-color: #F5F5F5;
}

#titbar {
    padding: 86px 0 60px;
    overflow: visible;
}
#titbar h1 {
    position: relative;
    font-size: 32px;
    letter-spacing: 0.05em;
    display: block;
    padding-top: 50px;
    border-top: 1px solid #D6D6D6;
}
#titbar::after {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-ye);
    background: linear-gradient(135deg, var(--color-ye) 50%, #FBEF7D 75%, var(--color-ye) 100%);
}

.other-content .content-wrap h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--color-gray);
}
.other-content .content-wrap h2::before {
    content: '';
    display: block;
    width: 1.6em;
    height: 3px;
    background-color: var(--color-nav);
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 10;
}

.other-content .content-wrap h3 { margin-bottom: 16px; }
.other-content .content-wrap h4 { margin-bottom: 10px; }
.other-content .content-wrap h5 { margin-bottom: 6px; }
.other-content .content-wrap h6 { margin-bottom: 3px; }
.other-content .content-wrap .grid2 { grid-gap: 20px; }
.other-content .content-wrap .grid3 { grid-gap: 10px; }

/*--- ul / ol ---*/
.other-content .content-wrap ul {
    list-style: none;
    margin-bottom: 1em;
    padding: 0;
    padding-left: 1em;
}
.other-content .content-wrap ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}
.other-content .content-wrap ul > li:before {
    position: absolute;
    content: "●";
    left: -1em;
    top: 0;
}

.other-content .content-wrap ol {
    list-style: none;
    counter-reset: li;
    margin-bottom: 1em;
    padding-left: 1em;
}
.other-content .content-wrap ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 10px;
}
.other-content .content-wrap ol > li:before {
    position: absolute;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    font-size: 17px;
    position: relative;
    z-index: 5;
}
#ft01 a,
#ft01 p {
    line-height: 1.8;
    letter-spacing: 0.05em;
}
#ft01 a { color: var(--color-wh); }
.ft-wrap {
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.ft-hd {
    position: relative;
}
.ft-hd .ft-logo {
    font-size: 20px;
    margin-bottom: 16px;
}
.ft-hd .ft-txt p { margin-bottom: 0; }
.ft-hd .ft-txt p:first-child { margin-bottom: 10px; }
.ft-hd .sns-list {
    position: absolute;
    right: -6px;
    bottom: 0;
    z-index: 10;
}
.ft-hd .sns-list a { display: block; padding: 6px; }

.f-line {
    display: block;
    width: 1px;
    height: 220px;
    background-color: var(--color-ye);
}

.f-flex {
    position: relative;
    justify-content: flex-end;
    gap: 42px;
}
.f-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-menu li:not(:last-child) { margin-bottom: 24px; }
.f-menu li a {
    position: relative;
    padding-left: 20px;
}
.f-menu li a::before {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0.75em;
    background-color: var(--color-ye);
}


.ft-cp {
    color: var(--color-nav);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 10px 10px 12px;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 1500px) {
    .sec-inner-start { padding-left: calc(100 / var(--inner-size) * 50cqi); }
    .sec-inner-end { padding-right: calc(100 / var(--inner-size) * 50cqi); }
}
@media screen and (max-width: 991px) {
    :root {
        --txt-size: 18px;
    }
    .txt-cp { font-size: 15px; }
    .content-wrap { padding-top: 80px; padding-bottom: 80px; }
    .sec-inner-start { padding-left: calc(100 / var(--inner-size) * 50cqi); }
    .sec-inner-end { padding-right: calc(100 / var(--inner-size) * 50cqi); }

    .btn00 a, .rela-btn > span { font-size: 16px; }
    .sec01-box .item-txt .sec01-txt > p { font-size: 18px; }
    .sec02-box { max-width: 800px; grid-gap: 20px; }
    .sec02-box .sec02-item .sec02-icon { width: 146px; }
    .sec02-box .sec02-item .sec02-tit { font-size: 18px; }
    .sec01-box .item-img img { width: 156%; max-width: 550px; }
    #titbar { padding: 68px 50px 46px; }
}
@media screen and (max-width: 767px) {
    :root {
        --txt-size: 16px;
    }
    h1, .sizeh1 { font-size: 28px; }
    h2, .sizeh2 { font-size: 26px; }
    h3, .sizeh3 { font-size: 23px; }
    h4, .sizeh4 { font-size: 21px; }
    h5, .sizeh5 { font-size: 19px; }
    h6, .sizeh6 { font-size: 17px; }
    .txt-cp { font-size: 14px; }
    .txt-marker { padding: 0; }
    .grid2 { grid-template-columns: repeat(1, 1fr); }
    .grid4 { grid-template-columns: repeat(2, 1fr); }
    table tr th, table tr td { font-size: 16px; padding: 16px 20px; }
    .overlap-box .overlap-txt { width: 85%; margin-top: -2em; margin-left: 10%; padding: 2rem 2rem; }
    .overlap-box .overlap-txt .txt-wrap p { font-size: 16px; }
    .overlap-box .overlap-txt::before {
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        top: -10px;
        left: -10px;
    }
    .overlap-box .overlap-img { width: 105%; aspect-ratio: 3 / 2; }
    .overlap-box .overlap-img::before { display: none; }
    .overlap-box.reverse-box .overlap-img { margin-left: -5%; }
    .overlap-box.reverse-box .overlap-txt { margin-left: 5%; }
    section { overflow-x: hidden; }
    .sec-inner {
        padding-right: 5%;
        padding-left: 5%;
    }
    .main-slider,
    .main-slider .swiper-slide img { height: 92vh; min-height: 460px; }
    .sec00-txt { width: 500px; }
    .sec01-box .item-txt { width: 100%; margin-top: 0em; }
    .sec01-box .item-txt .sec01-tit { padding: 4px 2px; }
    .sec01-box .item-txt .sec01-tit::before,
    .sec01-box .item-txt .sec01-tit::after { width: 20px; height: 20px; }
    .sec01-box .item-txt .sec01-tit::before { top: -1px; left: -12px; }
    .sec01-box .item-txt .sec01-tit::after { bottom: -8px; right: -12px; }
    .sec01-box .item-txt .sec01-tit .tit01 { margin-bottom: 6px; }
    .sec01-box .item-txt .sec01-tit .tit02 { margin-right: 2px; }
    .sec01-box .item-txt .sec01-txt > p { font-size: 16px; }
    .sec02::before, .sec03::before { display: none; }
    .sec03 .content-wrap { padding-top: 0; padding-bottom: 11px; }
    .sec04-box { grid-gap: 80px!important; }
    .sec05 .content-wrap { padding-top: 0; }
    .sec06-box .sec06-item { height: 152px; }
    .sec06-box .sec06-item .cp { font-size: 20px; }
    .sec06-box .sec06-item .tel { font-size: 32px; letter-spacing: 0.02em; padding-bottom: 6px; }
    .sec06-box .sec06-item .tel::before { width: 38px; height: 30px; }
    #titbar { padding: 68px 5% 36px; }
    #titbar h1 { font-size: 24px; padding-top: 30px; }
    #ft01 { font-size: 15px; }
    .ft-hd { width: 100%; }
    .ft-hd .ft-logo { font-size: 18px; }
    .ft-hd .sns-list { right: 0px; }
    .ft-wrap { flex-direction: column; align-items: flex-start; }
    .f-line { width: 100%; height: 1px; margin: 26px 0; }
    .f-flex { flex-wrap: wrap; justify-content: flex-start; gap: 14px 26px; }
    .f-flex .f-menu { width: 9.2em; }
    .f-flex .f-menu:last-of-type { width: 100%; }
    .f-menu li:not(:last-child) { margin-bottom: 14px; }
    .f-menu li a { font-size: 14px; }
    .ft-cp { font-size: 12px; }
}
@media screen and (max-width: 575px) {
    ul.list-2col { grid-template-columns: repeat(1, auto); }
    .grid-box { grid-gap: 20px; }
    .row-map iframe { height: 260px; }
    .btn00 a, .rela-btn > span { font-size: 14px; }
    table:not(.table-data) tr th,
    table:not(.table-data) tr td { display: block; padding: 20px 12px; }
    table:not(.table-data) tr th { text-align: left; padding-bottom: 0; }
    table:not(.table-data) tr td { font-size: 15px; padding-top: 2px; }
    table:not(.table-data) tr > *:not(:last-child) { border-right: none; }
    table.table-data tr th, table.table-data tr td { letter-spacing: 0; padding: 10px 10px; }
    table.table-data tr th { font-size: 12px; line-height: 1.4; }
    table.table-data tr th:first-child { width: 4.3em!important; }
    table.table-data tr th:last-child { width: 4em!important; }
    table.table-data tr td { font-size: 15px; line-height: 1.4; }

    .sec02 .sec-tit p { font-size: 19vw; }
    .sec00-txt { width: 90%; max-width: 500px; }
    .sec02-box { grid-gap: 10px; grid-template-columns: repeat(2, 1fr); }
    .sec02-box .sec02-item { gap: 8px; }
    .sec02-box .sec02-item .sec02-icon { width: 56%; max-width: 260px; }
    .sec02-box .sec02-item .sec02-tit { font-size: 14px; padding-bottom: 10px; }

    .other-content .content-wrap .grid3 { grid-template-columns: repeat(1, 1fr); grid-gap: 10px; }
}

/* --------------------------------------------
    お知らせリスト - info-box
-------------------------------------------- */
.info-box {
    margin-bottom: 2.5rem;
    padding: 40px 20px;
}
.info-item {
    color: var(--color-nav);
    margin-bottom: 0;
    padding: 32px 20px;
    border-bottom: 1px solid var(--color-nav);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.info-box > a:first-child .info-item { padding-top: 0; }
.info-box > a:last-child .info-item { padding-bottom: 0; border-bottom: none; }
.info-item dt {
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}
.info-item dd {
    flex: 1;
    font-size: 18px;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.info-box > a:hover .info-item, .info-box > a:focus .info-item {
    color: #000;
    text-decoration: none;
    outline: none;
}
@media screen and (max-width: 767px) {
    .info-item { flex-direction: column; gap: 6px; }
    .info-item dd {
        white-space: initial;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

/* --------------------------------------------
    .tel-box
-------------------------------------------- */
.tel-box {
    position: relative;
    color: var(--color-wh);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 3rem;
    padding: 15px;
    background-color: var(--color-nav);
}
.tel-box::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    z-index: 10;
    display: block;
    width: 23px;
    height: 2px;
    background-color: var(--color-wh);
    transform: scaleX(1);
    transform-origin: center right;
}
.tel-box .txt {
    font-size: 16px;
}
.tel-box .tel {
    font-weight: 900;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}
.tel-box .tel .cp {
    font-size: 20px;
}
.tel-box .tel .num {
    font-size: 30px;
    line-height: 1.2;
}
.tel-box:hover { color: #fff; }
.tel-box:hover::before {
    transform: scaleX(0.3);
}


/* --------------------------------------------
    CONTACT FORM 7
-------------------------------------------- */
.contact-form p {
    width: 100%!important;
    margin-bottom: 0!important;
    line-height: 1.5!important;
}
.contact-form dl {
    margin: 0;
    padding: 20px 0;
}
.contact-form dl:not(:last-of-type) { border-bottom: 1px dotted #ccc; }
.contact-form dl label { margin-bottom: 0; }
.contact-form dl dt {
    font-size: 15px;
    display: block;
    padding: 0 4px 6px;
}
.contact-form dl dd {
    flex: 1;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form dl dd input,
.contact-form dl dd textarea {
    font-size: 16px;
    max-width: 100%;
    padding: 10px 12px;
    border: none;
}
.contact-form dl dd textarea { width: 100%; }
.contact-form input[type="radio"],
.contact-form input[type="checkbox"] { margin-right: 5px; }

/* radio */
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: none;
}
.wpcf7-radio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}
.wpcf7-radio label::before,
.wpcf7-radio label:has(:checked)::after {
    content: '';
    display: block;
    border-radius: 50%;
}
.wpcf7-radio label::before {
    width: 20px;
    height: 20px;
    background-color: var(--color-wh);
}
.wpcf7-radio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--color-bl);
}
.wpcf7-radio input {
    display: none;
}

/* checkbox */
.wpcf7-checkbox {
    border: none;
}
.wpcf7-checkbox label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    margin-bottom: .5em;
    cursor: pointer;
}
.wpcf7-checkbox label::before,
.wpcf7-checkbox label:has(:checked)::after {
    content: '';
}
.wpcf7-checkbox label::before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--color-wh);
}
.wpcf7-checkbox label:has(:checked)::before {
    background-color: var(--color-bl);
}
.wpcf7-checkbox label:has(:checked)::after {
    position: absolute;
    top: 11px;
    left: 12px;
    transform: rotate(45deg);
    width: 8px;
    height: 11px;
    border: solid var(--color-wh);
    border-width: 0 2px 2px 0;
}
.wpcf7-checkbox input {
    display: none;
}

.contact-form .wpcf7-list-item { margin: 0!important; }
.contact-form .wpcf7-list-item label {
    font-size: 16px;
    padding: 6px;
}
.contact-form .wpcf7-file { font-size: 15px; }

.contact-form .must {
    color: #C30008 !important;
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin-left: 5px !important;
    padding: 2px 4px 4px !important;
    vertical-align: baseline !important;
}
.wpcf7-submit {
    color: #fff!important;
    font-size: 18px!important;
    width: 12em!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: block!important;
    margin: 30px auto!important;
    padding: 20px 5em!important;
    text-align: center;
    background: var(--color-bl)!important;
    background-size: 100%!important;
    background-position: center!important;
    border: none!important;
    border-radius: 0!important;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.wpcf7-submit:hover { background: var(--color-bl)!important; }
.wpcf7-not-valid-tip {
    color: #C30008 !important;
    font-size: 14px !important;
    padding-top: 3px !important;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
    text-align: center;
    border: none!important;
    margin: 0!important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { color: #C30008 !important; }
@media screen and (max-width: 767px) {
    .contact-form dl { display: block; }
    .contact-form dl dt { width: 100%; }
    .contact-form dl dd { width: 100%; }
}

/* --------------------------------------------
    works - 事業内容（内部ページ）
-------------------------------------------- */
.works-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    margin: 0 0 30px;
    padding: 30px;
    background-color: #EFEFEF;
    border-radius: 10px;
}
.works-box .sec02-item { width: 140px; }
.works-box .sec02-item .sec02-icon { width: 114px; }
.works-box:nth-child(4) .sec02-item .sec02-icon { padding-bottom: 0.5rem; }
.works-box:nth-child(n+5) .sec02-item .sec02-icon { padding-bottom: 0.8rem; }
.works-box .sec02-txt { flex: 1; }
.works-box .sec02-txt p:last-of-type { margin-bottom: 0; }
@media screen and (max-width: 767px) {
    .works-box { display: block; border-radius: 6px; }
    .works-box .sec02-item { margin-inline: auto; margin-bottom: 12px; }
    .works-box .sec02-item .sec02-icon { width: 114px; }
    .works-box .sec02-txt h4 { text-align: center; }
}
@media screen and (max-width: 575px) {
    .works-box { padding: 22px 24px; }
    .works-box .sec02-item { width: 120px; }
    .works-box .sec02-item .sec02-icon { width: 92px; }
}