﻿/** font **/
@import url('https://fonts.googleapis.com/css2?family=Dawning+of+a+New+Day&family=Shippori+Mincho+B1:wght@500&display=swap');

:root{
    --font-jp: 'Shippori Mincho B1', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
    --font-en: 'Dawning of a New Day', "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}

.font_jp, a[href^="tel:"]{
    font-family: var(--font-jp);
}
.font_en{
    font-family: var(--font-en);
    letter-spacing: 0;
}
.font_bold{
    font-weight: normal;
}

/** color **/

:root{
    --color1: #edc624;
    --color2: #f7f7f5;
    --color3: #279166;
    --color4: #e0dedc;
    --black: #595842
}

/** loader ***/

#loader_h{
	z-index: 1000;
}
#loader_h .loader_img{
    left: 0;
    top: -20px;
}
#loader_h.active .loader_img{
    top: 0;
}
#loader_h.active .drop {
    position: relative;
    width: 20px;
    height: 20px;
    top: -30px;
    margin: 0 auto;
    background-color: var(--color1);
    border-radius: 0 20px 20px 20px;
    transform: scaleY(1.5) rotate(45deg);
    animation: drip cubic-bezier(.5,0,.96,.47) 1.5s;
    animation-iteration-count: 2;
}
#loader_h.active .wave {
    position: relative;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 1px;
    border: var(--color1) 2px solid;
    border-radius: 300px / 150px;
    animation: ripple 1.5s 1.5s;
    animation-iteration-count: 2;
}

@keyframes ripple {
    from {
      opacity: 1;
    }
    to {
      width: 600px;
      height: 300px;
      border-width: 1px;
      opacity: 0;
    }
}

@keyframes drip {
    to {
        top: 50%;
        border-radius: 20px;
        transform: scaleY(1) rotate(45deg);
    }
}

/** other **/

h2, h3, h4, h5, h6{
    line-height: 1.5;
}

.normal_img img, .rectangle_img, .square_img{
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

header .menu_stick{
    position: fixed;
    background-color: var(--color2);
}
#logo{
    padding-left: 0;
}

header .trans_logo{
    padding: 20px;
    background-color: transparent;
}
header .trans_logo img{
    max-width: 200px;
}

.under_page #logo img{
    width: auto;
    max-width: 220px;
}

#pc_nav{
    display: none;
}
#sp_nav{
    font-family: var(--font-jp);
}
#sp_nav .sp_nav_box > ul > li:not(.tel_bt) a span{
    transition-property: opacity;
}
#sp_nav .sp_nav_box > ul > li:not(.tel_bt) a .en{
    top: 5px;
    left: 0;
}
#sp_nav .sp_nav_box > ul > li:not(.tel_bt) a:hover .jp{
    opacity: 0;
}
#sp_nav .sp_nav_box > ul > li:not(.tel_bt) a:hover .en{
    opacity: 1;
}

#main_img{
    position: relative;
    min-height: 720px;
}
#main_img::before{
    position: absolute;
    content: "";
    top: 0;
    left: -20px;
    bottom: -20px;
    right: 0;
    background-image: url('./Dup/img/bg_img.jpg');
}
#main_img::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right top, rgba(255,255,255,0.6), rgba(255,255,255,0));
    top: 0;
    left: 0;
    z-index: 2;
}

.catch{
    bottom: 20%;
    left: -40%;
    z-index: 3;
}
.catch h2{
    font-size: calc(40px + 1vw);
}

#contents1 .con1_right{
    background-image: url('./Dup/img/bg_img2.png'), url('./Dup/img/bg_img4.png');
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: top right, bottom right;
}
#contents1 .con1_title p{
    font-family: var(--font-en);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--color1);
}
#contents1 .con1_title h2{
    font-family: var(--font-jp);
}

#contents2 .con2_wrap{
    position: relative;
    background-image: url('./Dup/img/bg_img3.png');
    background-repeat: no-repeat;
    background-size: 600px;
    background-position: bottom left;
}
#contents2 .con2_wrap::before{
    position: absolute;
    content: "";
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('./Dup/img/bg_img.jpg');
    z-index: -1;
}

#contents2 .con2_title p{
    font-family: var(--font-en);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--color1);
}
#contents2 .con2_title h2{
    font-family: var(--font-jp);
}

#contents3 .con3_title p{
    font-family: var(--font-en);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 30px;
}
#contents3 .con3_title h2{
    font-family: var(--font-jp);
}
#contents3 .txt_more{
    cursor: pointer;
    background-color: #dfb400;
    border-radius: 50px;
}
#contents3 .txt_more:hover{
    background-color: #fff;
    color: var(--color1);
}
#contents3 .txt_more .arrow{
    height: 0.8em;
    width: 1em;
}
#contents3 .txt_more .arrow::before, #contents3 .txt_more .arrow::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background-color: currentColor;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
    transition-property: width, right, left, transform;
}
#contents3 .txt_more .arrow::after{
    transform: rotate(90deg);
}
#contents3 .txt_more.trans .arrow::before{
    transform: rotate(-45deg);
    width: 6px;
    right: 4px;
}
#contents3 .txt_more.trans .arrow::after{
    transform: rotate(45deg);
    width: 6px;
    left: 4px;
}

.more a{
    padding: 10px;
    border: none;
    color: var(--black);
    background-color: var(--color2);
    border-radius: 100px;
    font-family: var(--font-jp);
}
.more a:hover{
    color: #fff;
}
.more span.d_block{
    width: 100px;
    height: 100px;
    top: auto;
    left: 50%!important;
    bottom: -100px;
    transform: translateX(-50%)!important;
    border-radius: 50%;
    background-color: var(--color3);
    transition-property: width, height, bottom;
}
.more a:hover span.d_block{
    width: 300px;
    height: 300px;
    bottom: -150px;
}

#top_cms .top_cms_bg{
    display: none;
}
#top_cms .cms_title{
    font-family: var(--font-jp);
}
#top_cms .cms_title h2{
    font-family: var(--font-en);
    letter-spacing: 0;
    font-size: 40px;
    line-height: 1.5;
    color: var(--black);
}

#top_info .info_title{
    font-family: var(--font-jp);
}
#top_info .info_title h2{
    font-family: var(--font-en);
    letter-spacing: 0;
    font-size: 40px;
    line-height: 1.5;
    color: var(--black);
}

header > .page_title_bg{
    background-color: transparent;
}
#page_title{
    font-family: var(--font-jp);
    margin-bottom: 20px;
}
#page_title::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
    background-image: url('./Dup/img/bg_img.jpg');
    z-index: -1;
}
#page_title h2{
    font-family: var(--font-en);
    letter-spacing: 0;
    font-size: 60px;
    line-height: 1.5;
}
#page_title > .page_title_bg{
    opacity: 0.6;
}

.pager{
    font-family: var(--font-jp);
}

.cate_title{
    font-family: var(--font-jp);
}
.box_title1, .box_title2, .box_title{
    font-family: var(--font-jp);
}

.cms_4-a .square_img{
    border-radius: 0;
    box-shadow: none;
}
#cms_4-a .box_txt1{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#page10 .more a{
    padding: 15px 0;
}
#page10 .more a:hover span.d_block{
    width: 500px;
    height: 500px;
    bottom: -200px;
}

.under_page #footer{
    background-color: transparent;
    border-top: solid 1px var(--color4);
}
#footer .footer_bottom{
    background-color: transparent;
}
#footer .footer_nav{
    font-family: var(--font-jp);
}
#footer #logo2{
    background-color: var(--color2);
}
#footer #logo2 img{
    max-width: 250px;
}

.head_banner{
    width: 80px;
    top: 0;
    right: 80px;
    z-index: 10;
}



/** tablet 780 **/
@media screen and (max-width: 768px){

#wrap:not(.under_page) header .trans_header{
    top: -60px;
}
#wrap:not(.under_page) header .trans_header.scrollheader{
    top: 0;
}
#header{
    padding: 30px 0 20px;
    width: 80%!important;
}
#logo{
    max-width: 250px;
}
#main_img{
    padding-top: 20px;
    height: 70vw!important;
    min-height: inherit;
}
#main_img::after{
    top: 20px;
    height: calc(100% - 20px);
}
#main_img::after{
    background-image: none;
    background-color: var(--black);
    opacity: 0.2;
}
.catch{
    color: #fff;
    left: 5%;
    bottom: 50px;
    padding-left: 0;
    text-shadow: 0 0 10px rgba(89,88,66,0.5);
}
header .trans_header{
    height: 60px;
}
header .trans_logo {
    padding: 15px 20px;
}
header .trans_logo img {
    max-width: 150px;
}
header .menu_stick{
    width: 60px;
    height: 60px;
}
#contents1 .con1_right, #contents2 .con2_wrap{
    background-size: 300px;
}
.more a span.d_block{
    width: 300px;
    height: 300px;
    bottom: -150px;
}
#page_title{
    padding-top: 0;
    margin-top: 60px;
}
#page10 .more a span.d_block{
    width: 500px;
    height: 500px;
    bottom: -200px;
}
#top_info{
    background-color: transparent;
}
.head_banner{
    width: 60px;
    right: 60px;
}
}

/** mobile 750 **/
@media screen and (max-width: 667px){
#logo{
    max-width: 200px;
}
.catch{
    bottom: 20px;
}
.catch h2{
    font-size: calc(24px + 1vw);
}
#contents1 .con1_title p, #contents2 .con2_title p, #contents3 .con3_title p{
    font-size: 26px;
    margin-bottom: 20px;
}
#page_title h2{
    font-size: 50px;
}
}