  /*======= common style =======*/
@charset "utf-8";

/* import font */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-weight: 400;
    color: #222222;
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: "Kozuka Gothic Pr6N","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; */
}

body {
    background-image: url(../images/body-bg.png);
    background-repeat: repeat;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

.container-big {
    max-width: 1140px;
}


section {
    padding: 65px 0px;
}

.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}

.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.clear:after {
 content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}


@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 50px 0px;
    }
}

.cl-white {
    color: #ffffff !important;
} 

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-stretch {
    align-items: stretch;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    background-color: #00000065;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    transition-delay: 0.25s;
    z-index: 2;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.pc {
    display:  block !important;
}

.sp {
    display: none !important;
}

/* =====start - header===== */
header {
    width: 100%;
    border-top: 5px solid #42c56b;
    background-color: #fff;
    z-index: 20;
    position: relative;
}

.header__inner {
    padding: 0px 15px;
    max-width: 1230px;
    margin: 0 auto;
    height: 95px;

    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
}

.main-menu {
    display: flex;
    align-items: center;
    column-gap: 24px;
    padding-top: 18px;
}

.menu-item a {
    font-size: 15px;
    font-weight: 500;
    display: block;
    position: relative;
    padding: 5px 0px;
}

.menu-item a::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #42c56b;
    border-radius: 50%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: .25s;
    opacity: 0;
    visibility: hidden;
}

.menu-item a:hover::before {
    opacity: 1;
    visibility: visible;
}

.menu-item.active a::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #42c56b;
    border-radius: 50%;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.site__desc {
    background-color: #ebeff0;
    font-size: 13px;
    font-weight: 400;
    padding: 5px 20px 6px;
    color: #737373;
    display: inline-block;
}

.site__desc:nth-of-type(1) {
    border-bottom-left-radius: 6px;
    padding: 5px 10px 6px 20px;
    position: relative;
}

.site__desc:nth-of-type(1):after {
    position: absolute;
    content: "|";
    right: -2px;
    top: 3px;
}

.site__desc:nth-of-type(2) {
    border-bottom-right-radius: 6px;
    padding: 5px 20px 6px 10px;
}


.header__full-w  .__item {
    align-self: stretch;
    width: 50%;
    height: 80px;

    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: center;
    cursor: pointer;
}

.header__full-w  .__item span {
    font-size: 20px;
    font-weight: 500;
}

.header__full-w  .__item.--yellow {
    background-color: #f1df4b;
}

.header__full-w  .__item.--blue {
    background-color: #66d6ee;
}

.header__full-w {
    position: relative;
    flex-wrap: wrap;
}

.wrap__f-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    /* opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    transform: translateY(20px); */
}

.wrap__f-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.f-menu__block {
    width: 100%;
    height: 242px;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;   
}

.f-menu__title {
    width: 31%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 50px;
    background-color: #ebeff0;
}

.f-menu__title span {
    font-size: 20px;
    font-weight: 500;
    padding-left: 16px;
    border-left: 5px solid;
}

.header__full-w .__item.--yellow .f-menu__title span {
    border-color: #f1df4b;
}

.header__full-w .__item.--blue .f-menu__title span {
    border-color: #66d6ee;
}

.f-menu__content {
    flex: 1;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 20px 50px;
}

.f-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 40px;
}

.f-menu__link img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.f-menu__link h3 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}

.header__full-w .__item.--blue .f-menu__content .f-menu__link:hover h3 {
    color: #66d6ee;
}

.header__full-w .__item.--yellow .f-menu__content .f-menu__link:hover h3 {
    color: #f1df4b;
}

.f-menu a {
    opacity: 1;
}

/* =====end - header===== */


/* =========start - footer========= */
footer {
    position: relative;
    width: 100%;
}

.top-footer {
    background-image: url(../images/ft-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer__inner {
    padding: 50px 0px;

    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.ft__logo img {
    max-width: calc(576px / 2);
}

.ft__logo  p {
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
}

.ft__menu {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 25px;
}

.ft__menu .__right {
    column-gap: 25px;
    display: flex;
    align-items: flex-start;
    color: #FFF;
}

.ft-block a,
.ft-block p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 5px 5px 10px 14px;
    display:block;
}

.ft-block a.child {
    padding-left: 20px;
}

.ft-block a.child::after {
    content: none;
}

.ft-block a::after,
.ft-block p::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b4d1bd;
    left: 0;
    top: 13px;
}

.wrap-footer__copyright .site__desc {
    background-color: #fff;
}

.wrap-footer__copyright  {
    background-color: #fff;
}

.wrap-footer__copyright .__inner {
    height: 50px;
}

.wrap-footer__copyright .__inner a {
    font-size: 13px;
    color: #737373;
}

.copyright{
    color: #737373;
    font-size: 10px;
    letter-spacing: 1px;
}
/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: absolute;
    top: -81px;
    right: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #fff;
    font-size: 14px;
    
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */
.logo__menu-sp,
.site__desc-sp,
.hambuger {
    display: none;
}

@media only screen and (max-width: 1024px) {
    header {
        border-width: 3px;
    }
    .header__logo img {
        max-width: 260px;
    }
    .site__desc {
        display: none;
    }
    .site__desc-sp {
        display: block;
        padding: 20px 30px;
        font-size: 14px;
        color: #737373;
    }
    .logo__menu-sp {
        display: block;
        padding-left: 25px;
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #FFF;
    }
    .header__nav {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: calc(100vh - 3px);
        background-color: #d0f0e0;
        z-index: 10;
        align-items: flex-start;
        text-align: left;
        display: none;
    }
    .menu-item.active a::after {
        content: none;
    }
    .header__inner {
        position: relative;
        height: 65px;
        box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
        z-index: 2;
    }
    .main-menu {
        flex-wrap: wrap;
        width: 100%;
        padding: 20px 18px;
    }
    .menu-item a {
        padding: 25px 12px;
        border-bottom: 1px solid #a9dfbe;
        font-size: 17px;

        background: url(../images/arrow_g-sp.png) no-repeat 12px 11px ;
        background-position: 97% 33px;
    }
    .menu-item a:hover::before {
        display: none;
    }
    .menu-item {
        width: 100%;
    }
    .hambuger {
        position: absolute;
        right: 0px;
        top: 0;
        cursor: pointer;
        height: 100%;
        width: 65px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 11;
        transition: .3s;
    }
    .hambuger span {
        width: 24px;
        height: 2px;
        background-color: #000;
        border-radius: 2px;
        display: block;
        margin: 3px 0px;
        transition: 0.3s;
    }
    .hambuger.active span.line1 {
        transform: rotate(45deg) translate(6px, 5px);
        background-color: #fff;
    }
    .hambuger.active span.line2 {
       opacity: 0; 
       background-color: #fff;
    }
    .hambuger.active span.line3 {
        transform: rotate(-45deg) translate(6px, -5px);
        background-color: #fff;
    }
    .hambuger.active {
        background-color: #42c56b;
    }
    .ft__logo{
        width: 100%;
        text-align: center;
    }
    .ft__menu {
        flex: unset;
        justify-content: center;
        width: 100%;
    }
    .ft__logo img {
        margin: 0 auto;
    }
    .footer__inner {
        padding-top: 60px;
    }
    #back-to-top {
        right: 50%;
        top: -60px;
        transform: translateX(50%);
    }
    #back-to-top img {
        max-width: 65px;
    }
    .top-footer {
        background-image: url(../images/ft-bg-sp.jpg);
        background-position: bottom;
    }
    .header__full-w .__item {
        width: 100%;
        height: auto;
        column-gap: 0px;
    }
    .wrap__f-menu {
        display: block !important;
        position: static !important;
        flex: 1;
    }
    .header__full-w .__item svg {
        display: none;
    }
    .f-menu__link img {
        display: none;
    }
    .f-menu__title {
        display: none;
    }
    .f-menu__block {
        height: auto;
    }
    .header__full-w .__item span {
        width: 130px;
        font-size: 13px;
        display: block;
        padding: 5px;
        text-align: center;
    }
    .f-menu__link h3 {
        padding-top: 0px;
        font-size: 13px;
    }
    .f-menu__content {
        padding: 0px;
    }
    .f-menu {
        flex-wrap: wrap;
        width: 100%;
    }
    .f-menu__item {
        width: 100%;
        padding: 0px 25px;
    }
    .f-menu__link {
        padding: 16px 0px;
        display: block;
    }
    .header__full-w .__item.--blue .wrap__f-menu .f-menu__content .f-menu  a {
        border-bottom: 1px solid #a4cfda;
        background: url(../images/right-blue.png) no-repeat 11px 10px;
        background-position: 100% 20px;
    }
    .header__full-w .__item.--yellow .wrap__f-menu .f-menu__content .f-menu  a {
        background: url(../images/right-yellow.png) no-repeat 11px 10px;
        background-position: 100% 20px;
    }
    .header__full-w .__item.--blue .wrap__f-menu .f-menu__content .f-menu .f-menu__item:last-child  a {
        border-bottom: 0px;
    }
    .header__full-w .__item.--blue .wrap__f-menu .f-menu__content {
        background-color: #d7eff5;
    }
    .header__full-w .__item.--yellow .wrap__f-menu .f-menu__content {
        background-color: #f6f3dd;
    }
}
/* end breakpoint 1024px */

@media only screen and (max-width: 768px) {
    .sp {
        display:  block !important;
    }
    .pc {
        display: none !important;
    }
    .logo__menu-sp {
        padding-left: 20px;
    }
    .logo__menu-sp img {
        max-width: 250px;
    }
    .ft__menu .__right {
        flex-wrap: wrap;
        width: 50%;
    }
    .ft__menu .__left {
        width: 50%;
        padding-left: 20px;
    }
    .ft-block a {
        font-size: 14px;
    }
    .ft__menu {
        column-gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    .wrap-footer__copyright .__inner {
        height: auto;
        padding: 15px 0px;
        flex-wrap: wrap;
        row-gap: 16px;
        justify-content: center;
    }
    .wrap-footer__copyright .__inner a {
        font-size: 12px;
    }
    .copyright {
        font-size: 10px;
        width: 100%;
        text-align: center;
    }
}
/* end breakpoint 768px */


@media only screen and (max-width: 479px) {
    .ft__logo img {
        max-width: 215px;
    }
    .ft__logo p {
        font-size: 12px;
    }
}
/* end breakpoint 479px */


@media only screen and (max-width: 360px) {
    .ft__menu .__left {
        padding-left: 10px;
    }
    .header__full-w .__item span {
        width: 100px;
    }
    .f-menu__item {
        padding: 0px 16px;
    }
}
/* end breakpoint 360px */

@media only screen and (max-width: 320px) {
    .header__logo img {
        max-width: 230px;
    }
}

