@charset "UTF-8";

/*
Theme Name： mytheme
Author: AGEKKE GROUP CORP.
Author URI: https://www.agekke.co.jp/
Description: Original wordpress theme for NARETSUGU
version: 1.0
*/

/* File List ---------------
 *  style.css                 - Base Settings
 *    └ assets/
 *       └ css/
 *          ├ destyle.min.css - Reset css
 *          ├ home.css        - Home Page style
 *          └ lp-style.css    - Sales-support page style
 * --------------- */


/*-----------------------------------------------------

    Base Settings

-----------------------------------------------------*/

:root {
    /* color */
    --color-white:        #fff;
    --color-black:        #333;
    --color-gray:         #595757;
    --color-gray-02:      #D9D9D9;
    --color-gray-03:      #F5F5F5;
    --color-gray-04:      #666;
    --color-gray-05:      #EEE;
    --color-orange:       #FF9329;
    --color-orange-02:    #FFB72E;
    --color-darkorange:   #E97132;
    --color-blue:         #33D5EF;
    --color-blue-02:      #1774AB;
    --color-blue-03:      #006BAB;
    --color-blue-04:      #26acde;
    --color-blue-05:      #005BAC;
    --color-blue-06:      #036EB8;
    --color-lightblue:    #D9EAF1;
    --color-lightblue-02: #F6FCFF;
    --color-navy:         #00436A;
    --color-navy-02:      #141B3B;
    --color-pink:         #EB86A5;
    --color-pink-02:      #FDF8FC;
    --color-green:        #59B585;
    --color-green-02:     #F0F8F4;
    --color-gold:         #B59D37;

    --color-error:         #ba2020;
    --color-error-bg:      #fce3e3;

    --color-gradient-orange: var(--color-orange) 0%, var(--color-orange-02) 100%;
    --color-gradient-blue: var(--color-blue) 0%, var(--color-blue-02) 100%;

    /* shadow */
    --box-shadow: 0 4px 10px rgb(0 0 0 / .25);

    /* border */
    --border-radius-circle: 9999rem;
    --border-radius-corners: 30px;

    /* clip-path */
    --triangle-right: polygon(0 0, 0% 100%, 100% 50%);
    --triangle-bottom: polygon(0 0, 100% 0%, 50% 100%);

    /* font */
    --font-size-heading-lv1: clamp(3.625rem, 1.779rem + 2.88vw, 4.375rem); /* 58px to 70px */
    --font-size-heading-lv2: clamp(1.5rem, 0.938rem + 1.17vw, 1.875rem);   /* 24px to 30px  */
    --font-size-heading-lv3: clamp(1.25rem, 0.75rem + 0.78vw, 1.375rem);   /* 20px to 22px */
    --font-size-text-xl:     clamp(1.25rem, 0.964rem + 0.45vw, 1.5rem);    /* 20px to 24px */
    --font-size-text-l:      clamp(1.125rem, 0.839rem + 0.45vw, 1.375rem); /* 18px to 22px */
    --font-size-text-m:      clamp(1rem, 0.857rem + 0.22vw, 1.125rem);     /* 16px to 18px */
    --font-size-text-s:      clamp(0.875rem, 0.732rem + 0.22vw, 1rem);     /* 14px to 16px */
    --font-size-text-xs:     clamp(0.75rem, 0.607rem + 0.22vw, 0.875rem);  /* 12px to 14px */

    /* transition */
    --transition-duration: .3s;
    --transition-ease-in-out-quad:  cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
/* -----リキャプチャ非表示 -----*/
.grecaptcha-badge { visibility: hidden; }
/* ----- 改行 -----*/
br.pad_br,
br.m_br{
	display: none;
}

@media screen and (max-width: 1023px) {
	br.pad_br {
		display: block;
	}
	br.p_br1023 {
		display: none;
	}		
}
@media screen and (max-width: 767px) {
	br.p_br {
		display: none;
	}	
	br.m_br {
		display: block;
	}
}

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--font-size-text-s);
    line-height: 2.0;
    width: 100%;
    position: relative;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    image-rendering: -webkit-optimize-contrast; /* for Chrome */
}
a {
    color: inherit;
    transition: all var(--transition-duration);
}

.pc-only { display: block; }
.sp-tab { display: none; }
.sp-only { display: none; }

@media screen and (max-width: 1023px) {
    .pc-only { display: none; }
    .sp-tab { display: block; }
}

@media screen and (max-width: 767px) {
    .sp-only { display: block; }
}



/*-----------------------------------------------------

    COMPONENTS

-----------------------------------------------------*/

/* text --------------------*/
.text_bold {
    font-weight: bold;
}
.text_underline {
    text-decoration: underline;
}

/* list --------------------*/
.list_disc > li {
    margin-left: 1.5em;
    text-indent: -1.5em;
    line-height: 1.777;
}
.list_disc > li::before {
    content: "・";
    margin-right: .5em;
}

/* btn --------------------*/
.btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.btn {
    background: var(--color-navy);
    border-radius: var(--border-radius-circle);
    width: clamp(15.625rem, 6.339rem + 14.51vw, 23.75rem);
    max-width: 380px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.btn a {
    color: var(--color-white);
    display: block;
    font-size: clamp(1rem, 0.571rem + 0.67vw, 1.375rem);
    font-weight: bold;
    line-height: 1;
    padding: 0.875em 2em 0.875em .5em;
    width: 100%;
    position: relative;
    z-index: 1;
}
.btn::before {
    background: var(--color-blue-02);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .4s ease;
}
.btn:hover::before {
    transform: scale(1, 1);
}

a[class^="link_"] {
    position: relative;
}
a[class^="link_"]::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
a.link_dl::after {
    background: url("assets/images/icon_dl.svg") no-repeat right bottom / contain;
    width: clamp(1.125rem, 0.625rem + 0.78vw, 1.563rem);
    aspect-ratio: 1 / 1;
    right: 1.5em;
    transition: var(--transition-duration) ease;
}
a.link_arrow::after {
    border-top: solid 3px currentColor;
    border-right: solid 3px currentColor;
    border-radius: 2px;
    width: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
    aspect-ratio: 1 / 1;
    rotate: 45deg;
    right: 2em;
}
/* table --------------------*/
.content-table {
    width: 100%;
    border-collapse: separate;
    empty-cells: hide;
}
.content-table th,
.content-table td {
    padding: 10px 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.363;
}
.content-table thead th {
    background-color: var(--color-gray-04);
    border-radius: 10px 10px 0 0;
    color: var(--color-white);
    font-size: var(--font-size-text-l);
}
.content-table tbody th {
    font-size: var(--font-size-text-m);
    line-height: 1.777;
}
.content-table td {
    font-size: var(--font-size-text-l);
}

/* JS and animation --------------------*/

/* accordion */
[data-trigger="accordion-head"] {
    cursor: pointer;
}

/* scroll-in */
.js-scrollIn {
    opacity: 0;
    transform : translateY(50px);
    transition : .75s;
}
.js-scrollIn.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* scroll table */
.js-scrollTable{
    white-space: nowrap;
}

@media screen and (max-width: 1023px) {
    .content-table_frame {
        width: 100%;
        overflow-x: scroll;
    }
    .content-table_frame .content-table {
        width: 960px;
    }
}

@media screen and (max-width: 768px) {
    .btn a {
        line-height: 1.5;
        padding-right: 1.5em;
    }
    a.link_dl::after {
        right: 1em;
    }
    a.link_arrow::after {
        right: 1.5em;
    }
}

@media screen and (max-width: 767px) {
	.btn-wrap {
		display: block;
	}
     .btn {
       margin: 0 auto;
    } 
	.btn.btn_request {
		margin: 0 auto 15px;
	}
	.content-table_frame .content-table {
        width: 720px;
    }
}


/*-----------------------------------------------------

    HEADER

-----------------------------------------------------*/

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px clamp(1.875rem, 0.446rem + 2.23vw, 3.125rem);
    width: 100%;
    position: fixed;
    z-index: 9999;
}
.header::before {
    background-color: rgb(255 255 255 / 0.5);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.header.is-scroll::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header_logo {
    width: clamp(12.5rem, 6.143rem + 9.93vw, 18.063rem);
    aspect-ratio: 289 / 52;
}

@media screen and (max-width: 767px) {
	.header_logo {
		width: 150px;		
	}
}

/* global nav --------------------*/
.header_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px clamp(1.25rem, -0.893rem + 3.35vw, 3.125rem);
}
.header_nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1.25rem, -1.607rem + 4.46vw, 3.75rem);
}
.header_nav-list a {
    color: var(--color-black);
    font-size: var(--font-size-text-s);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}
.header_nav-list a::after {
    background-color: var(--color-navy);
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all .3s;
}
.header_nav-list a:hover::after {
    width: 100%;
}

.header_nav .btn-wrap {
    gap: clamp(0.625rem, -0.089rem + 1.12vw, 1.25rem);
}
.header_nav .btn {
    width: auto;
    min-width: 150px;
}
.header_nav .btn a {
    font-size: var(--font-size-text-s);
    padding-inline: 19px 15px;
}
.header_nav .btn a::after {
    display: none;
}
.header_overlay {
    display: none;
}

/* sp menu --------------------*/
.burger-menu {
    cursor: pointer;
    width: 40px;
    height: 16px;
    position: relative;
    z-index: 1000;
    display: none;
}
.burger-menu span {
    background-color: var(--color-navy);
    border-radius: 1px;
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    transition: .3s;
}

.burger-menu span:nth-of-type(1) {
    top: 0;
}
.burger-menu span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
}
.burger-menu span:nth-of-type(3) {
    bottom: 0;
}

.header.is-active .burger-menu span:nth-of-type(1) {
    translate: 0 8px;
    rotate: -45deg;
}
.header.is-active .burger-menu span:nth-of-type(2) {
    opacity: 0;
}
.header.is-active .burger-menu span:nth-of-type(3) {
    translate: 0 -8px;
    rotate: 45deg;
}

@media (max-width: 1023px) {
    .burger-menu {
        display: block;
    }

    .header_nav {
        background: linear-gradient(to left, var(--color-gradient-blue));
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        position: fixed;
        width: 80vw;
        height: 100vh;
        padding: 100px 10% 0;
        top: 0;
        right: -100%;
        z-index: 999;
        transition: right var(--transition-duration) ease-in;
    }
    .header_nav-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
    }
    .header_nav-list a {
        color: var(--color-white);
        font-size: 18px;
        font-weight: bold;
        letter-spacing: .1em;
    }

    .header_nav .btn-wrap {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .header_nav .btn {
        width: 100%;
        max-width: 280px;
    }
    .header_nav .btn a {
        color: var(--color-white);
        font-size: 18px;
    }

    .header_overlay {
        background-color: #333;
        cursor: pointer;
        display: block;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: opacity  var(--transition-duration), visibility  var(--transition-duration);
    }

    /* SPメニューアクティブ時 */
    .header.is-active .header_nav {
        right: 0;
    }
    .header.is-active .burger-menu span {
        background-color: var(--color-white);
    }
    .header.is-active .header_overlay {
        opacity: .8;
        visibility: visible;
    }
}

@media  (orientation: landscape) and (max-width: 1023px) {
    .header_nav-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header_nav .btn-wrap {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 25px 30px;
    }
	.header_nav {
        padding: 60px 10% 0;
	}
}


/*-----------------------------------------------------

    CONTENTS

-----------------------------------------------------*/
main {
    background-color: var(--color-white);
    position: relative;
    width: 100%;
}
section {
    padding: 97px 5%;
    position: relative;
}

.content_inner {
    max-width: 1260px;
    margin-inline: auto;
}

.section_title-wrap {
    text-align: center;
}
.section_title-label {
    color: var(--color-orange);
    font-size: var(--font-size-text-m);
    font-weight: bold;
    line-height: 1;
}
.section_title {
    color: var(--color-black);
    font-size: var(--font-size-heading-lv2);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 18px;
}
.section_content {
    margin-top: 88px;
}
@media screen and (max-width: 767px) {
	section {
    	padding: 50px 5%;
	}
	.section_content {
    	margin-top: 50px;
	}
}

/*-----------------------------------------------------

    PAGES

-----------------------------------------------------*/

.page-header {
    background: linear-gradient(to left, var(--color-gradient-blue));
    position: relative;
    padding: 30px 5%;
}
.page-header .content-inner {
    max-width: 1260px;
    margin: 60px auto 80px;
}
.page-title_jp {
    color: var(--color-white);
    display: block;
    font-size: clamp(1.875rem, 0.875rem + 1.56vw, 2.75rem);
    font-weight: bold;
}
.page-title_en {
    color: var(--color-white);
    display: block;
    font-size: var(--font-size-text-l);
    line-height: 1.2;
    font-weight: bold;
    margin-top: 15px;
}
.page-body {
    background-color: var(--color-lightblue);
    padding: 80px 5%;
}
.page-body .content-inner {
    max-width: 1260px;
    margin-inline: auto;
}
.page-body .btn-wrap {
    margin-top: 50px;
}

.page-content {
    font-size: var(--font-size-text-m);
    text-align: center;
}
.page-content p + p {
    margin-top: 20px;
}
.page-content .btn-wrap {
    flex-direction: column;
}

@media (max-width: 767px) {
    .page-content .btn {
        width: 80%;
    }
	.page-body {
    	padding: 50px 5%;
	}
	.page-header .content-inner {
    	margin: 50px auto;
	}
}


/*
    Contact & Request
------------------------------*/

/* form */
.form-wrap {
    background-color: var(--color-white);
    border-radius: var(--border-radius-corners);
    font-size: var(--font-size-text-m);
    padding: 5% 5% 10%;
}
.form-wrap form {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
}
.form-wrap .required {
    background-color: #dc3232;
    border-radius: 4px;
    color: var(--color-white);
    font-size: var(--font-size-text-xs);
    padding: 2px 5px;
    margin-left: 15px;
}
.form-list {
    border-top: 1px solid var(--color-gray-02);
    margin-top: 50px;
}
.form-list_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-list_flex .form-item {
    width: calc(50% - 15px);
}
.form-list_flex .form-item_wide {
    width: 100%;
}
.form-item {
    margin-top: 30px;
}
.form-title {
    font-size: var(--font-size-text-m);
    margin-bottom: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    background-color: var(--color-gray-03);
    border-radius: 10px;
    font-size: var(--font-size-text-m);
    padding: 10px 15px;
    width: 100%;
}
input[type="checkbox"] {
    margin-right: .3em;
    transform: scale(1.3);
}
select {
    -webkit-appearance: auto;
    appearance: auto;
}
.wpcf7-checkbox {
    font-size: var(--font-size-text-m);
}
.wpcf7-list-item {
    margin-left: 2em;
}

form a {
    color: var(--color-blue-04);
}
form a:hover {
    opacity: .6;
}
.recaptcha {
    font-size: var(--font-size-text-s);
    margin: 50px auto;
    text-align: center;
}

.form-submit {
    text-align: center;
}
.btn_submit,
div.wpcf7cp-btns button {
    background: linear-gradient(to right, var(--color-gradient-blue));
    color: var(--color-white);
    display: inline-block;
    font-size: var(--font-size-text-m);
    font-weight: bold;
}
.btn_submit::before,
.btn_submit::after,
div.wpcf7cp-btns button::before,
div.wpcf7cp-btns button::after {
    content: "";
    position: absolute;
}
.btn_submit::before,
div.wpcf7cp-btns button::before {
    background: var(--color-blue-03);
}
.btn_submit::after,
div.wpcf7cp-btns button::after {
    border-top: solid 3px currentColor;
    border-right: solid 3px currentColor;
    border-radius: 2px;
    width: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
    aspect-ratio: 1 / 1;
    top: 50%;
    right: 2em;
    z-index: 1;
    transform: translateY(-50%) rotate(45deg);
}
.wpcf7-submit,
div.wpcf7cp-btns button {
    border-radius: var(--border-radius-circle);
    color: var(--color-white);
    font-size: var(--font-size-text-m);
    font-weight: bold;
    padding: 0.875em 2em 0.875em .5em;
    width: 100%;
    position: relative;
    z-index: 1;
}
div.wpcf7cp-btns .wpcf7cp-cfm-submit-btn {
    width: 55%;
}
div.wpcf7cp-btns .wpcf7cp-cfm-edit-btn {
	background: var(--color-gray);
    width: 30%;
}

.wpcf7 .wpcf7-spinner {
	position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
}

/* エラー画面 */
.wpcf7-not-valid.agreement {
    display: inline-block;
}
.wpcf7-not-valid.agreement,
input.wpcf7-not-valid {
    background-color: var(--color-error-bg);
    border: 2px solid var(--color-error);
}

/* 確認画面 */
.wpcf7cp-form-hide {
    height: 1px;
}
div#wpcf7cpcnf {
    position: relative;
}
div#wpcf7cpcnf table {
	margin-inline: auto;
    border-spacing: 5px;
	width: 100%;
}
div#wpcf7cpcnf table th,
div#wpcf7cpcnf table td {
    padding: 15px;
    width: 50%;
}
div#wpcf7cpcnf table th {
    background-color: var(--color-gray-03);
}
div.wpcf7cp-btns {
	display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 2em auto 0;
	text-align: center;
}

/* 資料請求 */
.page-request .page-body {
    padding-top: 150px;
}
.request_content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.request_form {
    width: 50%;
}
.request_title {
    font-size: var(--font-size-heading-lv2);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
.request_form .form-list {
    border-top: none;
    border-bottom: 1px solid var(--color-gray-02);
    margin: 0 0 30px;
    padding-bottom: 50px
}
.request_form .form-item:first-child {
    margin-top: 0;
}
.request_form .wpcf7-list-item {
    margin-left: 0;
}
.request_form_text {
    font-size: var(--font-size-text-s);
    line-height: 1.666;
    text-align: center;
    margin-top: 20px;
}
@media screen and (max-width: 1279px) {
.recaptcha {
    margin: 30px auto;
    text-align: left;
	}
	.request_title {
    	font-size: 1.125rem;
	}
	.request_form {
    	width: 60%;
	}
	.request_summery {
		width: 40%;
	}
	.request_content .request_title span {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.page-request .page-body {
    	padding-top: 100px;
	}
    .form-wrap {
        padding-inline: 5%;
    }
    .form-list {
        display: block;
    }
    .form-list_flex .form-item,
	.request_summery {
        width: 100%;
    }
    .form-item .wpcf7-list-item {
        display: block;
        margin-top: 5px;
        margin-left: 1em;
    }
	.request_content .request_title span {
		display: inline;
	}
    div#wpcf7cpcnf table th,
    div#wpcf7cpcnf table td {
        display: block;
        padding: 10px 15px;
        width: 100%;
    }

    .btn_submit {
        width: 100%;
    }
    .wpcf7-submit,
    div.wpcf7cp-btns button {
        font-size: 14px;
    }
    div.wpcf7cp-btns button::after {
        right: 1em;
    }

    .request_content {
        flex-direction: column;
    }
    .request_form {
        width: 100%;
    }
    .request_form .form-item:first-child {
        margin-top: 30px;
    }
	.page-content {
		text-align: left;
	}
	.request_content {
    	gap: 30px;
	}
	.request_title {
    	margin-bottom: 15px;
	}
}


/*-----------------------------------------------------

    Footer

-----------------------------------------------------*/

.footer {
    background-color: var(--color-navy-02);
    color: var(--color-white);
    text-align: center;
    padding: 74px 5% 44px;
}
.footer_nav-list {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin: 58px auto;
}
.footer_nav-list li:not(:last-child) {
    border-right: 1px solid var(--color-white);
}
.footer_nav-list a {
    font-size: var(--font-size-text-s);
    font-weight: bold;
    padding: 3px 34px;
}
.footer_nav-list a:hover {
    opacity: .7;
}

.footer_copyright {
    font-size: 14px;
    font-weight: bold;
}

.pagetop {
    background-color: var(--color-navy-02);
    border: 1px solid var(--color-white);
    border-radius: var(--border-radius-circle);
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    cursor: pointer;
    font-size: var(--font-size-text-s);
    width: 60px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    right: 5%;
    bottom: 5%;
    z-index: 5;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}
.pagetop::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
    rotate: -45deg;
}
.pagetop:hover {
    background-color: var(--color-darkorange);
}
.pagetop.is-show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1023px) {
    .footer_nav-list {
        flex-wrap: wrap;
    }
    .footer_nav-list li {
        margin-bottom: 20px;
    }
    .footer_nav-list li a {
        padding-inline: 16px;
    }
}

@media (max-width: 767px) {
    .footer_nav-list li:not(:last-child) {
        border: none;
    }
}

