@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}

body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, input, textarea, table, th, td { margin:0px; padding:0px; }
body {
font-size: 15px;
color: #333;
font-family: "Noto Sans JP", sans-serif;
-webkit-text-size-adjust: 100%;
letter-spacing: 1.6px;
line-height: 2;
}
#powered_by_me {
    display: none;
}
a {
	color: #333;
    text-decoration: none;
    transition: all 0.3s;
}
.cassette ul > li, .cassette ol > li {
    margin-left: 20px;
}
ul > li {
    list-style-type: none;
}
.cassette .circle_li > li {
    margin-left: 0;
    position: relative;
    padding-left: 30px;
}
.cassette .circle_li > li::before {
    position: absolute;
    content: "●";
    left: 0;
    top: 0;
}
img{
    border:0px;
    margin: 0 auto;
    padding: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
}
iframe {
    border: 0;
    overflow: hidden;
}
table{
    border-collapse:collapse;
    width: 100%;
}
tr {
    border-bottom: 1px solid #bfbfbf;
}
th, td {
    display: block;
    text-align: left;
}
th {
    font-weight: bold;
    padding: 20px 10px 0;
}
td {
    padding: 5px 10px 20px;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                th, td {
                    display: table-cell;
                    padding: 30px 10px;
                }
                th {
                    width: 40%;
                }
                td {
                    width: 60%;
                }
            }
            @media screen and (min-width: 960px) {
                th {
                    width: 30%;
                }
                td {
                    width: 70%;
                }
            }


/* レイアウト
------------------------------------*/
#container {
    padding-top: 60px;
    overflow: hidden;
}
.link_area {
    padding-top: 60px;
    margin-top: -60px;
}
.inner {
	width: 88%;
	margin: 0 auto;
    max-width: 1200px;
}
.cassette {
	padding: 100px 0;
}
.flex {
    display: flex;
    flex-direction: column;
    gap: 40px 4%;
}
.link_txt {
    color: #ea6a98;
    text-decoration: underline;
}
.disc_li > li {
    list-style-type: disc;
}
.txtRed {
    color: #EA0000;
}
.t_bold {
    font-weight: bold;
}
.un_link span {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.un_link span::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #4eb9cd;
    bottom: 5px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.un_link:hover span::after {
    transform: scale(1, 1);
}
.un_link:hover {
    color: #4eb9cd;
    opacity: 1;
}
.r {
  color: #cc0000;
}
.red_ttl > span {
    position: relative;
    display: inline-block;
}
.red_ttl > span > span {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
}
.red_ttl .black {
  position: relative;
}

.red_ttl .r {
    clip-path: inset(0 100% 0 0);
}
.red_ttl.show .r {
    animation: textReveal 1s forwards;
    animation-delay: 0.8s;
}
.red_ttl.show .black {
    animation: blackFade 1s 0.2s forwards;
    animation-delay: 0.9s;
}
.red_ttl .black > span, .red_ttl .r > span {
    display: inline-block;
    padding-top: 7px;
    position: relative;
}
.red_ttl .black > span::before, .red_ttl .r > span::before {
    position: absolute;
    content: "●";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30%;
}
@keyframes textReveal{
  to{
    clip-path: inset(0 0 0 0);
  }
}
@keyframes blackFade{
  to{
    opacity: 0;
  }
}
.js_line {
    position: relative;
    display: table;
}
.js_line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #cc0000;
  transform: scaleX(0);
  transform-origin: left;
}

.js_line.is_active::after {
  animation: lineDraw 2s forwards;
}

@keyframes lineDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.en {
    font-family: "Josefin Sans", sans-serif;
}
.hide-area{
	display: none;
}
.modaal-close:after, .modaal-close:before{
	background:#ccc;
}
.modaal-close:focus:after, .modaal-close:focus:before,
.modaal-close:hover:after, .modaal-close:hover:before{
	background:#666;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            #container {
                padding-top: 70px;
            }
            .link_area {
                padding-top: 70px;
                margin-top: -70px;
            }
            .flex {
                flex-direction: row;
                justify-content: space-between;
            }
            .flex.rev {
                flex-direction: row-reverse;
            }
            .flex.wrap {
                flex-wrap: wrap;
            }
            .flex_box01{
                width: calc(96% / 2);
            }
            .flex_box02{
                width: calc(92% / 3);
            }
            .flex_box03{
                width: calc(88% / 4);
            }
            .tel {
                pointer-events: none;
            }
            .red_ttl .black > span, .red_ttl .r > span {
                padding-top: 15px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 960px) {
        }
        @media screen and (min-width: 1200px) {
            #container {
                padding-top: 100px;
            }
            .link_area {
                padding-top: 100px;
                margin-top: -100px;
            }
        }


/* responsive
------------------------------------*/
.pcTab, .pc, .tab { display: none;}
.sp, .tabSp { display: block;}

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .pc, .sp { display: none;}
                .tab, .pcTab, .tabSp { display: block;}
            }
            /* 【PC用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .sp, .tab, .tabSp { display: none;}
                .pcTab, .pc { display: block;}
            }


/* header
------------------------------------*/
#header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    top: 0;
    left: 0;
}
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
}
#header .logo {
    width: 60%;
    max-width: 200px;
    position: relative;
  z-index: 9999;
}
#header .logo img {
    margin: 0;
}
#header li a, #footer .f_nav a {
    display: block;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}
#header li a::before, #footer .f_nav a::before {
    position: absolute;
    content: "▶︎";
    color: #ed4947;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
#header li a:hover, #footer .f_nav a:hover {
    color: #ed4947;
}
#header .btn {
    padding-left: 0;
}
#header .btn::before {
    content: "";
}
#header .btn:hover {
    color: #fff;
}
#header .btn span::before {
    background-image: url("../img/mail_icon.png");
    width: 22px;
    height: 15px;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                #header .logo {
                    max-width: none;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1200px) {
                #header .logo {
                    width: 25%;
                }
                #header #gNavi {
                    width: 73%;
                    max-width: 750px;
                }
                #header .inner {
                    max-width: 1900px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 0 2%;
                }
                #header #gNavi ul {
                    align-items: center;
                }
                #header .btn {
                    margin-top: 0;
                }
                #header #gNavi a {
                    line-height: 1.5;
                    font-size: 0.8rem;
                }
            }
            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 1400px) {
                #header .logo {
                    width: 30%;
                }
                #header #gNavi {
                    width: 68%;
                }
                #header #gNavi a {
                    font-size: 0.9rem;
                }
            }


/* footer
------------------------------------*/
#footer {
    background-color: #e9eae8;
    padding: 40px 0;
    line-height: 1.5;
}
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
#pagetop.scrolled {
	z-index: 9999;
    opacity: 1;
}
#pagetop a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cc0000;
    color: #fff;
    position: relative;
}
#pagetop a:hover {
    opacity: 1;
}
#pagetop a::before {
    position: absolute;
    content: "▲";
    transition: all 0.3s;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
}
#pagetop a:hover::before {
    top: 30%;
}
#footer .copyright {
    font-size: 0.75rem;
}
#footer .tel_t {
    font-weight: 500;
    color: #fff;
    padding: 10px;
    text-align: center;
    background-image: linear-gradient( 90deg, rgb(204,0,0) 0%, rgb(230,33,0) 63%, rgb(255,66,0) 100%);
    font-size: 0.9rem;
    margin-top: 10px;
    max-width: 480px;
}
#footer .tel_t a {
    color: #fff;
}
#footer .f_nav {
    display: flex;
    justify-content: center;
    gap: 10px 4%;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 90%;
}
#footer .f_nav li {
    width: calc(96% / 2);
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                #pagetop a {
                    width: 70px;
                    height: 70px;
                }
                #footer .copyright {
                    font-size: 0.875rem;
                }
                #footer .flex_box01:first-child {
                    width: 35%;
                }
                #footer .flex_box01:last-child {
                    width: 61%;
                }
                #footer .f_nav {
                    margin: 40px auto;
                }
                #footer .f_nav li {
                    width: auto;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                #footer .tel_t {
                    font-size: 1.375rem;
                }
                #footer .copyright {
                    text-align: center;
                }
            }



/* 見出し
------------------------------------*/
.title01 {
    margin-bottom: 30px;
}
.title01 .en, .title01 .jp {
    display: table;
    font-weight: bold;
}
.title01 .en {
    font-size: 0.625rem;
}
.title01 .jp {
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
}
.title01 .jp::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-image: linear-gradient( 180deg, rgb(204,0,0) 0%, rgb(230,33,0) 63%, rgb(255,66,0) 100%);
}
.title01 .jp > span {
    color: #cc0000;
}
.title02 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.title02 .s {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 10px;
}
.title02 .black > span, .title02 .r > span {
    padding-top: 10px;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .title01 {
                    margin-bottom: 50px;
                }
                .title01 .en {
                    font-size: 0.9rem;
                }
                .title01 .jp {
                    font-size: 1.8rem;
                    padding-left: 30px;
                }
                .title01 .jp::before {
                    width: 15px;
                    height: 15px;
                }
                .title02 {
                    font-size: 3.4rem;
                    margin-bottom: 60px;
                }
                .title02 .s {
                    font-size: 2rem;
                }
                .title02 .black > span, .title02 .r > span {
                    padding-top: 20px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
            }


/* common
------------------------------------*/
.btn {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    font-weight: bold;
    max-width: 330px;
    margin: 40px auto 0;
}
.btn::before, .btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s;
}
.btn::before {
    background-image: linear-gradient( 90deg, rgb(204,0,0) 0%, rgb(230,33,0) 63%, rgb(255,66,0) 100%);
    opacity: 0;
    z-index: -2;
}
.btn::after {
    background-image: linear-gradient( -90deg, rgb(204,0,0) 0%, rgb(230,33,0) 63%, rgb(255,66,0) 100%);
    z-index: -1;
}
.btn:hover::before {
    opacity: 1;
    z-index: -1;
}
.btn:hover::after {
    opacity: 0;
    z-index: -2;
}
.btn span {
    display: block;
    padding: 0 40px 0 50px;
    position: relative;
}
.btn span::before, .btn span::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.btn span::before {
    content: "";
    left: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.btn span::after {
    content: "";
    transition: all 0.3s;
    right: 15px;
    background: url("../img/arrow_icon.png")no-repeat center center/cover;
    width: 16px;
    height: 15px;
}
.btn:hover span::after {
    animation: arrowLoop 0.6s ease;
}
/* アニメーションの定義 */
@keyframes arrowLoop {
  0% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  45% {
    transform: translateX(100%) translateY(-50%); /* 右へ移動 */
    opacity: 0;
  }
  50% {
    transform: translateX(-100%) translateY(-50%); /* 一瞬で左へワープ（見えない状態で） */
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);     /* 元の位置へ */
    opacity: 1;
  }
}
.dot_bg {
    position: relative;
}
.dot_bg::before {
    position: absolute;
    content: "";
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #dae1e8;
    background-image: radial-gradient(circle, #f1f4f6 1px, transparent 1px), radial-gradient(circle, #f1f4f6 1px, transparent 1px);
    background-position: 0 0, 7px 14px;
    background-size: 14px 28px;
}
.w_bg {
    background: url("../../img/w_bg.jpg")repeat-y top center;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .w_bg {
                    background-size: cover
                }
            }


/* spNavi
------------------------------------*/
#gNavi {
    display: none;
}
#spNavi {
	position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}
.drawer-btn {
	position: absolute;
	z-index: 999;
	top: 15px;
    right: 20px;
}
.openbtn{
	position: relative;
	cursor: pointer;
    width: 35px;
    height:25px;
	border-radius: 5px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
	background: #000;
  	width: 100%;
}
.scrolled .openbtn span {
    background-color: #000;
}
.openbtn span:nth-of-type(1) {
	top: 0;
}
.openbtn span:nth-of-type(2) {
	top: 12px;
}
.openbtn span:nth-of-type(3) {
	top: 25px;
}
.openbtn.active span:nth-of-type(1) {
    top: 6px;
    transform: translateX(-50%) translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 18px;
    transform: translateX(-50%) translateY(-6px) rotate(45deg);
}
.pull-down-list {
	display: block;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}
.pull-down-list > div {
	background-color: rgba(255, 255, 255, 0.95);
    height: calc(100vh - 70px);
    padding-top: 70px;
}
.pull-down-list li {
    border-bottom: 1px solid #bcbbbc;
}
.pull-down-list li a {
    padding: 15px 0 15px 30px;
}



            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .drawer-btn {
                    top: 21px;
                }
            }
            @media only screen and (min-width: 1200px) {
                #gNavi {
                    display: block;
                    margin-left: 40px;
                }
                #spNavi {
                    display: none;
                }
                .pull-down-list {
                    display: none;
                }
            }



/* clearfix
------------------------------------*/

.clearfix:after {
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden;
overflow:hidden;
}

.clearfix {
display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
height: 1%
}

.clearfix {
display:block;
}
/* end MacIE5 */