@charset "utf-8";

/*********************** 共通パーツ ***********************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --fsize-10: .625rem;
    --fsize-12: .75rem;/* 使う */
	--fsize-13: .8125rem;
	--fsize-14: .875rem;
	--fsize-15: .9375rem;
    --fsize-16: 1rem; /* 使う */
	--fsize-18: 1.125rem;/* 使う */
	--fsize-20: 1.25rem;
	--fsize-22: 1.375rem;/* 使う */
	--fsize-24: 1.5rem;
	--fsize-26: 1.625rem;
	--fsize-28: 1.75rem;
	--fsize-30: 1.875rem;
    --fsize-32: 2rem; /* 使う */
    --fsize-34: 2.125rem; /* 使う */
	--fsize-36: 2.25rem;
    --fsize-38: 2.375rem;
	--fsize-40: 2.5rem;
	--fsize-42: 2.625rem;
	--fsize-44: 2.75rem;
    --fsize-46: 2.875rem;
	--fsize-48: 3rem;
    --fsize-50: 3.125rem; /* 使う */
    --fsize-52: 3.25rem; /* 使う */
	--fsize-56: 3.5rem;
	--fsize-60: 3.75rem;/* 使う */
	--fsize-64: 4rem;
    --fsize-66: 4.125rem;/* 使う */
	--fsize-72: 4.5rem;
    --fsize-80: 5rem;/* 使う */
    --fsize-90: 5.625rem;/* 使う */
    --fsize-130: 8.125rem;
    --font-base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    --font-strong: "M PLUS Rounded 1c", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; 
    --font-en: "Roboto", sans-serif;
    --color-or: #ff6a3d;
    --color-gray: #999;
    --color-blue: #3bb3e0;
    --grade-1: linear-gradient( #FFF 0, #b7e2f4 82%);
}

body {
    width: 100%;
    font-family: var(--font-base);
    color: #2b3234;
    font-size: var(--fsize-18);
    line-height: 2;
}

h2,h3,h4,h5,h6 {
    font-family: var(--font-strong);
    font-weight: 500;
}

a[href*="tel:"] {
    pointer-events: none;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all .5s;
}

li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
}

.half-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.btns {
    display: flex;
    justify-content: center;
}
.btn {
    max-width: 285px;
    width: 100%;
    height: 70px;
}
.btn a {
    position: relative;
    display: block;
    padding-inline-start: 12%;
    text-align: center;
    line-height: 70px;
    font-family: var(--font-strong);
    font-weight: 700;
    font-size: var(--fsize-20);
    letter-spacing: .02em;
    border: 1px solid var(--color-blue);
    background-color: var(--color-blue);
    border-radius: 35px;
    color: #FFF;
}
.btn a::before {
    content: '';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 34px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #FFF;
    transition: all .5s ease;
}
.btn a::after {
    content: '';
    position: absolute;
    left: calc( 10% + 9px );
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    aspect-ratio: 1 / 1;
    background: url(../img/btn-arrow.svg) no-repeat center center;
    background-size: 12px;
    transition: all .5s ease;
}
.btn a:hover {
    color: var(--color-blue);
    background-color: #FFF;
}
.btn a:hover::before {
    background-color: var(--color-blue);
}
.btn a:hover::after {
    background: url(../img/btn-arrow-w.svg) no-repeat center center;
    background-size: 12px;
}
.btn.or a {
    border: 1px solid var(--color-or);
    background-color: #FFF;
    color: var(--color-or);
}
.btn.or a::before {
    background-color: var(--color-or);
}
.btn.or a::after {
    background: url(../img/btn-arrow-w.svg) no-repeat center center;
    background-size: 12px;
}
.btn.or:hover a {
    background-color: var(--color-or);
    color: #FFF;
}
.btn.or a:hover::before {
    background-color: #FFF;
}
.btn.or a:hover::after {
    background: url(../img/btn-arrow-or.svg) no-repeat center center;
    background-size: 12px;
}
em {
	font-style: normal;
}

#uni-toolbar:not(.uni-toolbar-disabled) #style_selector .style-toggle {
    top: 120px!important;
}

/*--------------------------------responsive */
@media screen and (max-width: 1200px) {
    body {
        font-size: 1rem;
    }
    a[href*="tel:"] {
        pointer-events: initial;
    }
    #uni-toolbar:not(.uni-toolbar-disabled) #style_selector .style-toggle {
        top: 70px!important;
    }
}
@media screen and (max-width: 700px) {
    .btns {
        display: block;
    }
    .btns .btn {
        margin: 0 auto 20px;
    }
}
@media screen and (max-width: 480px) {
}

/*----------------------------------------------------
 header
------------------------------------------------------*/
header {
    position: sticky;
    top: 0;
    z-index: 998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #FFF;
    padding: 0 2%;
}
header h1 {
    width: 17.5vw;
    margin: 0;
}
header h1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;   
}
header .hamburger {
    display: none;
}
header .gnav ul {
    display: flex;
    gap: 0 3vw;
    justify-content: flex-end;
    align-items: center;
}
.gnav li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gnav a {
    font-weight: 300;
    line-height: 1.5;
    color: #333;
}
.gnav a:hover {
    color: var(--color-blue);
}
.gnav span {
    display: block;
    text-align: center;
    font-family: var(--font-en);
    font-weight: normal;
    font-size: var(--fsize-12);
    color: var(--color-or);
}
.gnav li:last-child {
    width: 216px;
    height: 68px;
}
.gnav li:last-child a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--color-blue);
    color: #FFF;
    width: 100%;
    height: 100%;
    font-weight: 400;
    border-radius: 34px;
    padding-inline: 33.33% 13%;
}
.gnav li:last-child a::before {
    content: '';
    position: absolute;
    left: 14%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 32px;
    height: 25px;
    background: url(../img/mail.svg) no-repeat center center;
    background-size: contain;
}
.gnav li:last-child a span {
    color: #FFF;
}
/*--------------------------------responsive */
@media screen and (max-width: 1400px) {
    header .gnav ul {
        gap: 0 2vw;
    }
}
@media screen and (max-width: 1200px) {
    body.menu-open {
        overflow: hidden;
    }
    header {
        height: 60px;
    }
    header h1 {
        width: 200px;
    }
    header .hamburger {
        position: fixed;
        right: 10px;
        top: 0;
        display: block;
        width: 40px;
        height: 60px;
        border: none;
        background-color: transparent;
    }
    header .hamburger span {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-blue);
        border-radius: 5px;
        transition: all .5s ease;
    }
    header .hamburger span::before {
        content: '';
        position: absolute;
        top: -10px;
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: var(--color-blue);
        transition: all .5s ease;
    }
    header .hamburger span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: var(--color-blue);
        transition: all .5s ease;
    }
    header .hamburger.active {
        z-index: 1000;
    }
    header .hamburger.active span {
        background-color: transparent;
    }
    header .hamburger.active span::before {
        background-color: #FFF;
        transform: translateY(10px) rotate(-45deg);
    }
    header .hamburger.active span::after {
        background-color: #FFF;
        transform: translateY(-10px) rotate(45deg);
    }
    header .gnav {
        position: fixed;
        right: 0;
        top: 0;
        width: 300px;
        height: 100dvh;
        background-color: var(--color-blue);
        color: #FFF;
        transform: translateX(100%);
        transition: transform .4s;
        z-index: 90;
    }
    header .gnav.active {
        transform: translateX(0);
        padding-block: 60px;
        padding-inline: 1em;
    }
    header .gnav ul {
        display: block;
    }
    header .gnav li {
        display: block;
        border-bottom: 1px solid #FFF;
    }
    header .gnav li:last-child {
        width: 100%;
        border-bottom: unset;
        margin-block-start: 1em;
    }
    header .gnav a {
        display: block;
        color: #FFF;
        padding-block: .5em;
        text-align: left;
    }
    header .gnav a span {
        text-align: left;
        color: #FFF;
    }
    header .gnav li:last-child a {
        width: 210px;
        height: 60px;
        margin: 0 auto;
        padding-inline: 48px 13px;
        background-color: #FFF;
        color: var(--color-blue);
    }
    header .gnav li:last-child a::before {
        background: url(../img/mail-blue.svg) no-repeat center center;
    }
    header .gnav li:last-child a span {
        color: var(--color-blue);
    }
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 700px) {
}
@media screen and (max-width: 480px) {
    header .gnav {
        width: 100%;
    }
}


/*---------------------------------------------------
 contact
----------------------------------------------------*/
.contact-wrap {
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
.contact-wrap section {
	position: relative;
}
.contact-wrap section::before {
	content: '';
	position: absolute;
	left: 2.2em;
	top: 46px;
	width: calc( 100% - 4.4em );
	height: calc( 100% - 92px );
	background-color: #FFF;
	border-radius: 40px;
}
.contact-wrap .inner {
	position: relative;
	z-index: 1;
	margin: 1.5em;
	/* background-color: #FFF; */
	/* border-radius: 40px; */
	padding: 90px 2.5vw;
}
.contact-wrap h2 {
    font-size: var(--fsize-50);
	line-height: 1.2;
	letter-spacing: .02em;
	text-align: center;
	margin-block-end: 1em;
}
.contact-wrap h2 .sub {
    display: block;
	color: var(--color-gray);
	font-family: var(--font-en);
	font-weight: 400;
	font-size: var(--fsize-32);
}
.contact-wrap p {
	font-size: var(--fsize-20);
	letter-spacing: .02em;
}
.contact-wrap p span {
	font-family: var(--font-strong);
	font-weight: 500;
	font-size: var(--fsize-22);
}
.contact-wrap .btn {
    margin-block-start: 2em;
}
.contact-wrap .faq-blk {
	background-color: #b7e2f4;
}
.contact-wrap .faq-blk figure {
    position: absolute;
    right: calc( 2.5vw + 2.2em );
    bottom: 46px;
    width: 27%;
}
.contact-wrap .contact-blk {
	background-color: #ff8f6a;
	height: 100%;
}
.contact-wrap .contact-blk figure {
    position: absolute;
    right: calc( 2.5vw + 2.2em );
    bottom: 46px;
    width: 27.5%;
}

/*----------------------------------------------------
 footer
------------------------------------------------------*/
footer {
    padding-block-end: 50px;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    padding-block: 68px 0;
    padding-inline: 8.3vw 2.5vw;
}
.footer-wrap .company-blk {
    max-width: 336px;
    width: 100%;
}
.footer-wrap .company-blk h2 {
    width: 100%;
    margin-block-end: 1em;
}
.footer-wrap .company-blk .address {
    margin-block-end: 1em;
}
.footer-wrap .company-blk .tel {
    margin-block-end: .5em;
}
.footer-wrap .company-blk .tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 55px;
    color: var(--color-or);
    border: 1px solid var(--color-or);
    border-radius: 28px;
    margin: 0 auto;
}
.footer-wrap .company-blk .fax {
    text-align: center;
    margin-block-end: 1.5em;
}
.footer-wrap .marks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-wrap .marks li {
    width: 49%;
}
.footer-wrap .nav-blk {
    width: 54vw;
}
.footer-wrap .fnav {
    display: flex;
}
.footer-wrap .fnav ul {
    width: 32%;
    margin-inline-end: 1.5%;
}
.footer-wrap .fnav ul:last-of-type {
    margin-inline-end: 0;
}
.footer-wrap .fnav li {
    position: relative;
    line-height: 1.5;
    padding-inline-start: 1.5em;
    margin-block-end: 1.5em;
}
.footer-wrap .fnav li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .75em;
    display: block;
    width: .4em;
    height: 1px;
    background-color: #2b3234;
}
.footer-wrap .fnav a {
    color: #2b3234;
}
.footer-wrap .sns {
    margin-block-end: 54px;
}
.footer-wrap .sns ul {
    display: flex;
    justify-content: flex-end;
}
.footer-wrap .sns li {
    width: 54px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-inline-end: .5em;
}
.footer-wrap .sns li:last-child {
    margin-inline-end: 0;
}
.footer-wrap .sns li img {
    width: 100%;
}
.copy {
    font-size: 1rem;
    text-align: right;
    margin-inline-end: 2.5vw;
}

@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
    .contact-wrap section::before {
        left: 2em;
        top: 40px;
        width: calc( 100% - 4em );
        height: calc( 100% - 80px );
    }
    .contact-wrap .inner {
        padding: 60px 2.5vw;
    }
    .contact-wrap h2 {
        font-size: var(--fsize-44);
        margin-block-end: .75em;
    }
    .contact-wrap h2 .sub {
        font-size: var(--fsize-28);
    }
    .contact-wrap p {
        font-size: var(--fsize-18);
    }
    .contact-wrap p span {
        font-size: var(--fsize-20);
    }
    .contact-wrap .faq-blk figure,
    .contact-wrap .contact-blk figure {
        right: 2em;
        bottom: 40px;
    }
    .footer-wrap {
        flex-direction: column-reverse;
        padding-inline: 3%;
    }
    .footer-wrap .company-blk {
        display: flex;
        align-items: flex-end;
        max-width: unset;
    }
    .footer-wrap .company-blk div {
        margin-inline-end: 3%;
    }
    .footer-wrap .company-blk h2 {
        max-width: 300px;
        width: 90%;
    }
    .footer-wrap .company-blk .fax {
        margin-block-end: 0;
    }
    .footer-wrap .nav-blk {
        width: 100%;
    }
    .copy {
        margin-block-start: 30px;
        margin-inline-end: 3%;
    }
}
@media screen and (max-width: 1000px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-wrap .inner {
        padding: 70px 5vw;
    }
    .contact-wrap .faq-blk figure,
    .contact-wrap .contact-blk figure {
        width: 22%;
    }
    .contact-wrap .btn {
        margin-block-end: 20px;
    }
    .footer-wrap .sns ul {
        justify-content: center;
    }
}
@media screen and (max-width: 800px) {
    .contact-wrap {
        display: block;
    }
    .contact-wrap .inner {
        margin-block: 0;
    }
}
@media screen and (max-width: 700px) {
    .footer-wrap .fnav {
        flex-wrap: wrap;
    }
    .footer-wrap .fnav ul {
        width: 49%;
        margin-bottom: 20px;
    }
    .footer-wrap .fnav ul:nth-of-type(2) {
        margin-inline-end: 0;
    }
}
@media screen and (max-width: 480px) {
    .contact-wrap h2 {
        font-size: var(--fsize-36);
    }
    .contact-wrap h2 .sub {
        font-size: var(--fsize-24);
    }
    .footer-wrap .fnav ul {
        width: 100%;
        margin-inline: 0;
    }
    .footer-wrap .company-blk {
        flex-wrap: wrap;
    }
    .footer-wrap .company-blk div {
        width: 100%;
        margin-inline-end: 0;
        margin-block-end: 30px;
    }
    .footer-wrap .company-blk h2 {
        margin: 0 auto 20px;
    }
    .footer-wrap .company-blk .address {
        text-align: center;
    }
    .footer-wrap .marks {
        width: 100%;
        justify-content: center;
    }
    .footer-wrap .marks li {
        text-align: center;
    }
}
@media screen and (max-width: 350px) {
}

/*------------------------------------------
 pagination
--------------------------------------------*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}
.pagination li {
    width: 40px;aspect-ratio: 1 / 1;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--color-blue);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-blue);
    padding: 0;
}
.pagination li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--color-blue);
}

/*-----------------------------------------
 modal
 ------------------------------------------*/

 .modal {
	display: none;
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
 }
.modal-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    background-color: #fff;
    max-width: 640px;
    width: 90%;
    border-radius: 20px;
    animation-name: modalopen;
    animation-duration: 1s;
	padding: 2em;
}
@keyframes modalopen {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.modalClose {
	position: absolute;
	top: .5em;
	right: .5em;
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #FFF;
	border: 1px solid var(--color-blue);
}
.modalClose::before,
.modalClose::after {
	content: "";
	position: absolute;
	right: 6px;
	top: 18px;
	width: 24px;
	height: 2px;
	background-color: var(--color-blue);
}
.modalClose::before {
	transform: rotate(-45deg);
}
.modalClose::after {
	transform: rotate(45deg);
}
.modal-box  h3 {
	font-size: var(--fsize-30);
	color: var(--color-blue);
	text-align: center;
}
@media screen and (max-width: 480px) {
	.modal-box  h3 {
		font-size: var(--fsize-24);
	}
}