html, body {
    color: #333;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    overflow-x: hidden;
}
#tpage::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../img/bg00.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.hidden { display:none!important; }
h1, h2, h3, h4, h5, h6,
.sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 {
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
h1, .sizeh1 { font-size: 36px; }
h2, .sizeh2 { font-size: 32px; }
h3, .sizeh3 { font-size: 28px; }
h4, .sizeh4 { font-size: 25px; }
h5, .sizeh5 { font-size: 22px; }
h6, .sizeh6 { font-size: 20px; }

*[lang="en"] {
/*
    font-weight: 500;
    letter-spacing: 0.1em;
*/
}

.tit-icon {
    position: relative;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}
.tit-icon::before {
    content: "";
    display: block;
}
.tit-icon::before {
    display: block;
    width: 8px;
    height: 38px;
    margin: 0 auto 10px;
    background-image: url(../img/tit-iconh-gr.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.tit-icon.icon-wh::before { background-image: url(../img/tit-iconh-wh.png); }

.tit-icon.icon-horizontal { text-align: left; }
.tit-icon.icon-horizontal::before {
    width: 38px;
    height: 8px;
    margin: 0 0 10px;
    background-image: url(../img/tit-iconw-gr.png);
}
.tit-icon.icon-horizontal.icon-wh::before { background-image: url(../img/tit-iconw-wh.png); }

.titsub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.other-content h2 {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0 0.5em 0.3rem 0;
}
.other-content h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2CAE8C;
}

.other-content h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1rem;
    background-color: #2CAE8C;
}

.other-content h4 {
    position: relative;
    line-height: 1.3;
    padding-left: 15px;
    font-feature-settings: "palt";
}
.other-content h4::before {
    content: '';
    display: block;
    width: 7px;
    height: 1em;
    position: absolute;
    left: 0;
    top: 0.15em;
    background-color: #2CAE8C;
}

.other-content h5 {
    line-height: 1.2;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}
.other-content h5::before {
    content: '';
    display: block;
    width: 0.82em;
    height: 0.82em;
    background-color: #2CAE8C;
    border-radius: 50%;
}

.other-content h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* 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; }

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
}
.round10 {
    border-radius: 8px;
    overflow: hidden;
}

hr { margin: 5rem 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; }

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

/*--- 文字共通 ---*/
p {
    margin: 0 auto 1.6em;
	padding: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.color-red { color: #FD4857; }
.color-gr { color: #2CAE8C; }
.color-bk { color: #333; }
.color-wh { color: #fff; }

/*--- background ---*/
.bg-wh { background-color: #fff; }
.bg-bk { background-color: #4D4D4D; }
.bg-gray { background-color: #F7F7F7; }
.bg-gr { background-color: #2CAE8C; }
.bg-none { background-color: transparent; }
.bg-img-gr {
    background-image: url(../img/bg-img-gr.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: 100px 100px;
}

/* --- flex-box --- */
.flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-reverse {
    flex-direction:row-reverse;
}
.flex-wrap {
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
}

/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-gap: 2rem;
}
.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; }

/*--- box ---*/
.box-wh, .box-gray {
    padding: 30px 36px;
}
.box-or {
    padding: 2rem 3rem;
}
.box-wh { background-color: #fff; }
.box-gray { background-color: #F5F5F5; }
.box-or { background-color: #FD7813; }
.box-wh p,
.box-gray p,
.box-or p {
    line-height: 2;
    letter-spacing: 0.05em;
    width: 100%;
    max-width: 42em;
    margin: 0 auto 1.5em;
}

/*--- .full-map ---*/
.full-map .map-wrap {
    line-height: 0;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.full-map .map-wrap iframe {
    width: 100%;
    height: 900px;
    margin-top: -200px;
}
.full-map .map-cp {
    text-align: center;
    padding: 5px;
}

/* --------------------------------------------
    btn00
-------------------------------------------- */
.btn-wrap { margin-top: 3rem; }
.btn00, .rela-btn {
    text-align: center;
}
.btn00 a,
.rela-btn > span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    overflow: hidden;
    display: inline-block;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 18px 36px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    background-color: #4D4D4D;
}
.btn00 a::before,
.rela-box .rela-btn > span::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    z-index: 10;
    display: block;
    width: 23px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    transform: scaleX(1);
    transform-origin: center right;
}
.btn00 a:hover::before,
.rela-box:hover .rela-btn > span::before {
    transform: scaleX(0.3);
}


/* --------------------------------------------
    header
-------------------------------------------- */
#hd01 {
    position: relative;
    max-height: 100vh;
    min-height: 700px;
    padding-bottom: 9vw;
    background-color: #fff;
    background-image: url(../img/hd-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#hd01::before {
    content: "";
    display: block;
    width: 24%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #fff;
}
.hd01-slider { width: 91%; }
.hd01-slider .swiper-slide {
    position: relative;
    height: auto;
    height: calc(100vh - 4.5vw);
    max-height: 720px;
    min-height: 573px;
    margin: 0!important;
    overflow: hidden;
}

.hd01-txt {
    position: absolute;
    right: 4.6vw;
    bottom: 6vw;
    z-index: 10;
}
.hd01-txt .logo {
    width: 332px;
    margin-left: auto;
    margin-right: 1rem;
}
.hd01-txt .txt01,
.hd01-txt .txt02 {
    font-weight: 500;
    letter-spacing: 0.05em;
}
.hd01-txt .txt01 {
    font-size: 71px;
    line-height: 1.28;
    margin-top: -1em;
    margin-bottom: 0.1em;
    filter: drop-shadow(0px 3px 10px rgba(17, 21, 16, 0.74));
    -webkit-filter: drop-shadow(0px 3px 10px rgba(17, 21, 16, 0.74));
    -ms-filter: drop-shadow(0px 3px 10px rgba(17, 21, 16, 0.74));
}
.hd01-txt .txt01 .txt-small { font-size: 59px; }
.hd01-txt .txt01 .txt-pr { padding-right: 0.2em; }
.hd01-txt .txt02 {
    font-size: 14px;
    padding-right: 1.6em;
    filter: drop-shadow(0px 3px 5px rgba(17, 21, 16, 0.60));
    -webkit-filter: drop-shadow(0px 3px 5px rgba(17, 21, 16, 0.60));
    -ms-filter: drop-shadow(0px 3px 5px rgba(17, 21, 16, 0.60));
}

.scroll-box {
    position: absolute;
    bottom: calc(9vw - 60px);
    left: calc(12% - 60px);
    z-index: 100;
    display: block;
    width: 120px;
    height: 120px;
}
.scroll-box .bg {
    animation: rotate 40s infinite linear;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.scroll-box .arrow {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 100;
    display: block;
    width: 60px;
    height: 60px;
}

/* --------------------------------------------
    コンテンツ
-------------------------------------------- */
section {
    position: relative;
    z-index: 5;
}
.sec-inline { padding-inline: calc((100vw - 1000px) / 2); }
.sec-inline-start { padding-inline-start: calc((100vw - 1000px) / 2); }
.sec-inline-end { padding-inline-end: calc((100vw - 1000px) / 2); }
section > * { position: relative; z-index: 10; }
.content-wrap { width: 100%; margin: 0 auto; padding-top: 4rem; padding-bottom: 4rem; }
.content-wrap0 { padding: 0; }

/*---------- sec01 ----------*/
.sec01-wrap {
    padding: 50px 0;
}
.sec01-txt {
    text-align: center;
    width: 900px;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.sec01-txt .tit-box .titsub { margin-bottom: 1em; }
.sec01-btn { margin-top: 3.5rem; }

.sec01-img .img-item {
    position: absolute;
    z-index: 10;
    display: block;
    border: 5px solid #fff;
    border-radius: 100%;
    overflow: hidden;
}
.sec01-img .img-item.item01 {
    width: 228px;
    height: 228px;
    right: calc(50% + 200px);
    top: 150px;
}
.sec01-img .img-item.item02 {
    width: 288px;
    height: 288px;
    left: calc(50% + 450px - 150px);
    top: 293px;
}
.sec01-img .img-item.item03 {
    width: 162px;
    height: 162px;
    right: calc(50% + 188px);
    bottom: 167px;
}

/*---------- sec02 ----------*/
.sec02::before {
    content: "";
    display: block;
    width: 100vw;
    height: 12rem;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #F7F7F7;
}
.sec02-wrap { padding-bottom: 2rem!important; }
.sec02-img {
    position: relative;
    width: 86.6%;
    overflow: hidden;
}
.sec02-img::before {
    content: "";
    display: block;
    padding-top: 52%;
}
.sec02-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.sec02-txt {
    position: relative;
    z-index: 10;
    text-align: center;
    display: block;
    width: 22.5rem;
    margin-top: -12.2rem;
    margin-left: auto;
    padding: 46px 50px 60px;
    background-color: #fff;
}
.sec02-txt .tit-icon { margin-bottom: 1.6rem; }
/*
@media screen and (max-width: 991px) {
    .sec02-img { width: 92%; }
    .sec02-txt { margin-top: -5rem; margin-bottom: 6rem; padding: 36px 30px; }
    .sec02-txt .tit-box { margin-bottom: 1.35rem;  }
}
@media screen and (max-width: 575px) {
    .sec02-img {
        width: 108%;
    }
    .sec02-txt {
        width: 93.5%;
        margin-top: -2.5rem;
        margin-bottom: 4rem;
    }
}
*/

/*---------- sec03 ----------*/
.sec03-hd {
    margin-bottom: 30px;
    justify-content: space-between;
    align-items: flex-end;
}
.sec03-hd .tit-box {
    margin-bottom: 0;
}

.works-box { margin-bottom: 46px; }

.show { display: block; }
.hide { display: none; }

.works-box .work-item a {
    color: #333;
}
.works-box .work-img {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}
.works-box .work-img::before {
    content: "";
    display: block;
    padding-top: 80%;
}
.works-box .work-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    object-fit: cover;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.works-box .work-cat {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}
.works-box .work-cat > span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    display: inline-block;
    padding: 6px 16px;
    background-color: #2CAE8C;
    border-radius: 20px;
}

.works-box .work-txt {
    font-size: 0.92em;
    line-height: 1.5;
}

/*--- tab-btn ---*/
.cat-btn-box {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #EAEDEC;
}
.cat-btn-box .cat-item {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: block;
    padding: 15px 20px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.cat-btn-box .cat-item:hover,
.cat-btn-box .current { color: #2CAE8C; font-weight: bold; border-bottom-color: #2CAE8C; }


/* --------------------------------------------
    Other content
-------------------------------------------- */
#titbar {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 14rem;
    margin: 0 auto;
    padding: 70px 6% 0!important;
    background-color: #2CAE8C;
/*
    background-image: url(../img/titbar00.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
*/
}
#titbar h1 {
    color: #fff;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.other-content .content-wrap {
    padding-top: 4rem !important;
    padding-bottom: 6rem !important;
}
.other-content .bg-gray::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    background-color: #F7F7F7;
}
.other-content section p { line-height: 1.8; }
.other-content .row-map iframe {
    width: 100%;
    height: 365px;
}

/*--- ol ---*/
.other-content ol {
    list-style: none;
    counter-reset: li;
    margin-bottom: 2em;
    padding-left: 1em;
}
.other-content ol li {
    position: relative;
    margin-bottom: 0.7em;
    padding-left: 10px;
    line-height: 1.6;
}
ol > li:before {
    position: absolute;
    color: #141419;
    font-weight: bold;
    counter-increment: li;
    content: counter(li) ".";
    left: -1em;
    top: 0;
}
.other-content ol li > ul { margin-top: 10px; margin-bottom: 0; padding-left: 1em; }
/* ul */
.other-content ul {
    margin: 0;
    padding: 0;
    margin-bottom: 2em;
}
.other-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 1.2em;
}
.other-content ul li::before {
    content: "";
    line-height: 1;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 0.5em;
    background-color: #C3C3C3;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/*--- table ---*/
/*--- table ---*/
.other-content table {
    width: 100%;
    margin-bottom: 2em;
    background-color: #fff;
}
.other-content table th, .other-content table td {
    font-size: 16px;
    line-height: 1.6;
    vertical-align: top;
    padding: 8px 12px;
    border: 1px solid #dadada;
}
.other-content table th {
    font-weight: 500;
    /*background-color: #fbd9e3;*/
    background-color: #f9f9f9;
}
.other-content table th.cell-tit {
    color: #fff;
    letter-spacing: 0.02em;
    text-align: center;
    background-color: #F586A4;
}
.other-content table td ol,
.other-content table td ul { margin-bottom: 0; }
.other-content table th p, .other-content table td p {
    margin-bottom: 0!important;
    line-height: 1.4!important;
}

/*--- js-scrollable ---*/
@media screen and (max-width: 767px) {
    .js-scrollable {
        width: 100%;
        overflow-x: auto;
    }
    .js-scrollable table {
        width: 100%;
        min-width: 600px;
    }
    .js-scrollable table.table-long { min-width: 900px; }
}


/* --------------------------------------------
    TopPage
-------------------------------------------- */
.topbtn {
    color: #fff;
    font-size: 23px;
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 10;
    display: block;
    width: 66px;
    height: 66px;
    transform: rotateX(180deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    position: relative;
    z-index: 5;
    background-color: #EAEDEC;
}
.ft-wrap p, .ft-wrap a {
    position: relative;
    z-index: 1;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 1.5em;
}
.ft-wrap {
    grid-gap: 0;
    /*grid-template-columns: 480px 1fr;*/
    grid-template-columns: min(36%, 480px) 1fr;
    margin: 0 auto;
}

.ft-wrap .ft-start {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
    background-color: #fff;
}
.ft-wrap .ft-start .ft-logo {
    display: block;
    width: 100%;
    max-width: 260px;
}

.ft-wrap .ft-end {
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 5rem 3rem;
}

.ft-set {
    justify-content: flex-start;
    gap: 5rem;
}

.ft-nav-list {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}
.ft-nav-list li {
    position: relative;
    display: block;
    margin: 0 auto 8px;
    padding: 0;
    line-height: 1;
}

.ft-ft {
    display: block;
    margin-left: auto;
    text-align: right;
}
.ft-nav-cp { margin-bottom: 5px; }
.ft-nav-cp a { line-height: 1.2; margin-bottom: 10px; }

.ft-cp {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 1500px) {
    .sec-inline { padding-inline: calc((100vw - 1100px) / 2); }
    .sec-inline-start { padding-inline-start: calc((100vw - 1100px) / 2); }
    .sec-inline-end { padding-inline-end: calc((100vw - 1100px) / 2); }
}
@media screen and (max-width: 1100px) {
    .sec-inline { padding-inline: calc((100vw - 920px) / 2); }
    .sec-inline-start { padding-inline-start: calc((100vw - 920px) / 2); }
    .sec-inline-end { padding-inline-end: calc((100vw - 920px) / 2); }
}
@media screen and (max-width: 991px) {
    html, body { font-size: 16px; }
    h1, .sizeh1 { font-size: 32px; }
    h2, .sizeh2 { font-size: 28px; }
    h3, .sizeh3 { font-size: 25px; }
    h4, .sizeh4 { font-size: 22px; }
    h5, .sizeh5 { font-size: 20px; }
    h6, .sizeh6 { font-size: 18px; }
    .sec-inline { padding-inline: initial; padding-left: 5%; padding-right: 5%; }
    .sec-inline-start { padding-inline: initial; padding-left: 5%; }
    .sec-inline-end { padding-inline: initial; padding-right: 5%; }

    /*#hd01 { height: 100vh; }*/
    .hd01-txt .txt01 { font-size: 62px; }
    .hd01-txt .txt01 .txt-small { font-size: 50px; }
    .hd01-txt .logo { width: 280px; }
    .hd01-slider { width: 92%; }
    .hd01-slider .swiper-slide { height: calc(92vw - 70px); max-height: none; }
    .hd01-slider .swiper-slide img { height: 100%; object-fit: cover; }

    .scroll-box {
        bottom: calc(9vw - 50px);
        left: calc(12% - 50px);
        width: 100px;
        height: 100px;
    }
    .scroll-box .arrow {
        top: calc(50% - 23px);
        left: calc(50% - 23px);
        width: 46px;
        height: 46px;
    }

    .sec01-txt { width: 800px; height: 800px; margin-left: calc(50% - 400px); }
    .sec01-img .img-item.item02 { width: 260px; height: 260px; left: calc(50% + 420px - 150px); top: 300px; }
    .sec02-img::before { padding-top: 62%; }
    .works-box { grid-gap: 3vw; }
    .rec-btn .rec-box { height: 400px; }

    .ft-wrap .ft-start .ft-logo { max-width: 220px; }
    .ft-wrap .ft-end { padding: 4rem 4rem 2rem 3.5rem; }
    .ft-set { gap: 3.5rem; }
}
@media screen and (max-width: 767px) {
    h1, h2, h3, h4, h5, h6, .sizeh1, .sizeh2, .sizeh3, .sizeh4, .sizeh5, .sizeh6 { letter-spacing: 0.02em; }
    h1, .sizeh1 { font-size: 26px; }
    h2, .sizeh2 { font-size: 26px; }
    h3, .sizeh3 { font-size: 22px; }
    h4, .sizeh4 { font-size: 20px; }
    h5, .sizeh5 { font-size: 18px; }
    h6, .sizeh6 { font-size: 16px; }
    .titsub { font-size: 14px; }
    .tit-bd-l { padding-left: 12px; }
    .grid-box { grid-gap: 1.2rem; }
    .content-wrap { padding-top: 4rem; padding-bottom: 4rem; }

    #hd01 { height: 100vh; }
    #hd01::before { width: 16%; }
    .hd01-txt .txt01 { font-size: 52px; }
    .hd01-txt .txt01 .txt-small { font-size: 40px; }
    .hd01-txt .logo { width: 235px; }
    .scroll-box { display: none; }

    .sec01 { padding: 0!important; }
    .sec01-wrap { padding-bottom: 0!important; }
    .sec01-txt {
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 5rem 6% 4rem;
        clip-path: polygon(50% 0%, 100% 200px, 100% 100%, 0 100%, 0% 200px);
    }
    .sec01-img {
        display: flex;
    }
    .sec01-img .img-item {
        flex: 1;
        position: relative;
        left: auto!important;
        right: auto!important;
        top: auto!important;
        bottom: auto!important;
        display: block!important;
        width: 100%!important;
        height: 50vw !important;
        border: none!important;
        border-radius: 0!important;
    }
    .sec01-img .img-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }

    .sec02 { padding: 0!important; }
    .sec02::before { height: 20rem; }
    .sec02-img { width: 100%; }
    .sec02-txt {
        width: 22rem;
        margin-top: -5rem;
        margin-right: auto;
        padding: 35px 40px 40px;
    }

    .works-box .work-cat > span { font-size: 13px; padding: 4px 12px; }

    .ft-wrap p, .ft-wrap a { font-size: 14px; }
    .ft-wrap { grid-gap: 0; grid-template-columns: 1fr; }
    .ft-wrap .ft-start { padding: 25px 0; }
    .ft-wrap .ft-start .ft-logo { max-width: 150px; }
    .ft-wrap .ft-end { padding: 3rem 6% 2rem; }
    .ft-set { justify-content: center; }
    .ft-cp { font-size: 12px; }

    #titbar { min-height: 12rem; }
    .other-content .content-wrap {
        padding-top: 3rem !important;
        padding-bottom: 4rem !important;
    }
}
@media screen and (max-width: 575px) {
    .tit-box .titsub { font-size: 13px; }
    hr { margin: 3rem 0; }
    .grid-box { grid-gap: 10px; }
    .sec-inline { padding-left: 6%; padding-right: 6%; }
    .sec-inline-start { padding-left: 5%; }
    .sec-inline-end { padding-right: 5%; }
    .grid3, .grid4 { grid-template-columns: repeat(2, 1fr); }

    #hd01 { min-height: 600px; max-height: 650px; }
    .hd01-slider .swiper-slide { height: 100vw; }
    .hd01-txt { bottom: 9vw; right: 2.2vw; }
    .hd01-txt .txt01 { font-size: 38px; }
    .hd01-txt .txt01 .txt-small { font-size: 30px; }
    .hd01-txt .txt02 { font-size: 13px; line-height: 1.6; padding-right: 1em; }
    .hd01-txt .logo { width: 180px; }

    .sec01-txt { padding: 4rem 5% 4rem; clip-path: polygon(50% 0%, 100% 30vw, 100% 100%, 0 100%, 0% 30vw); }
    .sec01-txt p { letter-spacing: 0; }
    .sec02-txt { width: 86%; margin-top: -3rem; padding: 26px 40px 30px; }

    .topbtn { top: 25px; right: 16px; }
    .ft-wrap .ft-start { padding: 16px 0; }
    .ft-wrap .ft-start .ft-logo { max-width: 142px; }
    .ft-wrap .ft-end { padding: 1rem 6% 1.2rem; }
    .ft-set { margin-bottom: 25px; }
}

/* --------------------------------------------
    .tel-box
-------------------------------------------- */
.tel-box {
    position: relative;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 3rem;
    padding: 15px;
    background-color: #4D4D4D;
}
.tel-box::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    z-index: 10;
    display: block;
    width: 23px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    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);
}


/* --------------------------------------------
    .rec-btn
-------------------------------------------- */
.rec-btn {
    position: relative;
    display: block;
}
.rec-btn .rec-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    grid-area: 30px;
    width: 100%;
    height: 460px;
    padding: 3rem;
    background-color: #fff;
    background-image: url(../img/sec04-img01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.rec-btn .rec-box::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgb(51,51,51);
    background: linear-gradient(90deg, rgba(51,51,51,0.53) 10%, rgba(51,51,51,0) 60%);
    mix-blend-mode: multiply;
}
.rec-btn .rec-box .tit-box,
.rec-btn .rec-box .txt-box {
    position: relative;
    z-index: 50;
}

.rec-btn .rec-box .txt-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}
.rec-btn .rec-box .txt-box .txt-item {
    color: #333;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
    padding: 4px 8px 5px;
    background-color: #fff;
}

.rec-btn .icon-box {
    color: #2CAE8C;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 158px;
    height: 158px;
    position: absolute;
    bottom: 36px;
    right: 36px;
    z-index: 20;
    background-color: #fff;
    border: 14px solid #2CAE8C;
    border-radius: 50%;
    -webkit-transition: width 0.4s, height 0.4s, border-width 0.4s, bottom 0.4s, right 0.4s;
    transition: width 0.4s, height 0.4s, border-width 0.4s, bottom 0.4s, right 0.4s;
}
.rec-btn:hover .icon-box {
    width: 174px;
    height: 174px;
    border-width: 25px;
    bottom: 28px;
    right: 28px;
}
@media screen and (max-width: 575px) {
    .rec-btn .rec-box { height: 62vw; padding: 1.8rem 1.4rem; }
    .rec-btn .rec-box .tit-box { margin-bottom: 10px; }
    .rec-btn .rec-box .txt-box { gap: 6px; }
    .rec-btn .rec-box .txt-box .txt-item { font-size: 18px; padding: 3px 6px 4px; }
    .rec-btn .icon-box {
        font-size: 15px;
        position: relative;
        width: 100%!important;
        height: 60px!important;
        border-radius: 0;
        right: auto!important;
        bottom: auto!important;
        border-width: 8px;
    }
    .rec-btn:hover .icon-box { border-width: 12px; }
}


/* --------------------------------------------
    .contact-btn
-------------------------------------------- */
.contact-btn .full-btn {
    position: relative;
    color: #fff;
    font-size: 55px;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: block;
    padding: 120px 0 120px;
}
.contact-btn .full-btn .txt-item {
    justify-content: flex-start;
    align-items: baseline;
    gap: 32px;
    width: 90%;
    max-width: 824px;
    margin: 0 auto;
}
.contact-btn .full-btn .tit-box { line-height: 1; }
.contact-btn .full-btn .txt-box { font-size: 23px; letter-spacing: 0.02em; }

.contact-btn .full-btn .arrow-item,
.contact-btn .full-btn .arrow-item::before {
    -webkit-transition: all 0.4s, width 0.4s;
    transition: all 0.4s, width 0.4s;
}
.contact-btn .full-btn .arrow-item {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 10;
    display: block;
    width: 200px;
    height: 1px;
    right: calc(50% - 460px);
    background-color: #fff;
    transform-origin: center right;
}
.contact-btn .full-btn .arrow-item::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    right: -25px;
    z-index: -1;
    background-color: #fff;
    opacity: 0.28;
    border-radius: 50%;
}
.contact-btn .full-btn:hover .arrow-item { width: 70px; }
.contact-btn .full-btn:hover .arrow-item::before { transform: scale(2.8, 2.8); }
@media screen and (max-width: 991px) {
    .contact-btn .full-btn { font-size: 50px; }
    .contact-btn .full-btn .txt-box { font-size: 20px; }
    .contact-btn .full-btn .arrow-item { width: 120px; right: calc(50% - 300px); }
}
@media screen and (max-width: 767px) {
    .contact-btn .full-btn { font-size: 36px; }
    .contact-btn .full-btn .txt-item { gap: 16px; }
    .contact-btn .full-btn .tit-box { margin-bottom: 5px; }
    .contact-btn .full-btn .txt-box { font-size: 18px; }
    .contact-btn .full-btn .arrow-item { width: 100px; right: calc(50% - 200px); }
}
@media screen and (max-width: 575px) {
    .contact-btn .full-btn { font-size: 42px; }
    .contact-btn .full-btn .txt-item { width: 86%; gap: 0; flex-direction: column; }
    .contact-btn .full-btn .txt-box { font-size: 16px; }
    .contact-btn .full-btn .arrow-item { width: 80px; right: calc(50% - 120px); }
    .contact-btn .full-btn:hover .arrow-item { width: 50px; }
    .contact-btn .full-btn:hover .arrow-item::before { transform: scale(2, 2); }
}


/* --------------------------------------------
    CONTACT FORM 7
-------------------------------------------- */
.contact-form p { font-size: 1rem!important; width: 100%!important; margin-bottom: 0!important; list-style: 1.5!important; }
.wpcf7-form-control-wrap { display: initial; }
.contact-form dl {
    margin: 0.125em 0;
    padding: 0.5em 0;
    display: flex;
    border-bottom: 1px dotted #F2F2F2;
}
.contact-form dl:last-child { border-bottom: none; }
.contact-form dl label { margin-bottom: 0; }
.contact-form dl dt {
    font-weight: bold;
    width: 18em;
    margin-right: 2.5%;
    background: #F2F2F2;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 6px;
}
.contact-form dl dd {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form dl dd input { max-width: 100%; }
.contact-form input[type="radio"],
.contact-form input[type="checkbox"] { margin-right: 5px; }

.contact-form dl.contact-short-item dd input:not([type="checkbox"]) { width: 15em; }
.contact-form dl dd textarea { width: 100%; }
.contact-form .wpcf7-list-item label { margin-right: 10px; }
.contact-form .wpcf7-list-item label input { width: auto; }
.contact-form .wpcf7-list-item .wpcf7-list-item-label { white-space: nowrap; }
.contact-form .must {
    color: #fff!important;
    font-size: 13px!important;
    font-weight: bold!important;
    line-height: 1!important;
    display: inline-block!important;
    margin-left: 5px!important;
    padding: 2px 0.3em 3px!important;
    background: #C30008!important;
    border-radius: 3px!important;
    vertical-align: baseline!important;
}

.contact-form .policy-box {
    height: 150px;
    overflow-y: scroll;
    background-color: #fff;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: textarea;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
    -webkit-rtl-ordering: logical;
    flex-direction: column;
    resize: auto;
    cursor: text;
    overflow-wrap: break-word;
    margin: 5px 0 0;
    border-width: 1px;
    border-style: solid;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    padding: 1rem;
}
.contact-form .policy-box p {
    font-size: 0.8rem !important;
    margin: 0 auto;
    padding: 0;
}
.contact-form .policy-box p strong { display: block; }
.contact-form .policy-box ol { margin-bottom: 25px; }
.contact-form .policy-box hr { height: 30px; margin-bottom: 15px; }

.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: #4D4D4D!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: #000!important; }
@media screen and (max-width: 767px) {
  .contact-form dl { display: block; }
  .contact-form dl dt { width: 100%; margin-right: 0; margin-bottom: 15px; padding: 10px 15px; }
  .contact-form dl dd { width: 100%; }
  .contact-form dl dd input, .contact-form dl dd textarea { max-width: 100%; }
}