@charset "utf-8";

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
    height: auto;
    vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*
base
*/

:root {
    --root-font-size: 16;
}
:root {
    --spacing: 0;
}
* {
    letter-spacing: var(--spacing);
}

body {
    background: #FFF;
    color: #707070;
    font-family: 'Zen Kaku Gothic New', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    overscroll-behavior-y: none;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


body {
    animation-name: fadeIn;
    animation-duration: 1s;
}
body.active {
    overflow: hidden;
    height:100%;
}

a {color: #707070; text-decoration: underline;}
a:hover {color: #1FA1A0; text-decoration: none;}

a:hover img {
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
}

a,
a:hover,
a img,
a:hover img {
    transition: 0.5s 0s;
}

.clear {clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

::selection {
    background: rgba(31, 160, 161, 1);
    color: #FFF;
}
::-moz-selection {
    background: rgba(31, 160, 161, 1);
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: auto !important;
    width: 100%;
    margin: 0;
}
#container {
    width: 100%;
    margin: 0 auto;
}

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

/*----- common -----*/
main {
    display: block; /* IE */
}
div.flexWrap {
    display: flex;
}

.lh15 {
    line-height: 1.5;
}
.lh175 {
    line-height: 1.75;
}

.mainTtl {
    color: #1FA1A0;
    margin: 0 0 50px;
    transition: 0.5s 0s;
}
.mainTtl.white {
    color: #FFF;
}
a:hover .mainTtl.flex {
    color: #FBE51F;
}
a:hover .mainTtl.flex.white {
    color: #FFF;
}
.mainTtl.white {
    color: #FFF;
}
.mainTtl.flex {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 0 0 25px;
}
.newsWrap .mainTtl {
    margin: 0 0 15px;
}
.mainTtl.ttlWrap {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 50px;
}
.mainTtl .en {
    position: relative;
    font-size: calc( 36 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5!important;
    text-align: left!important;
    padding: 0 0 0 25px;
}
.mainTtl.flex .en,
.newsWrap .mainTtl .en {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 0 20px;
}
.mainTtl .en::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: #FBE51F;
    border-radius: 50%;
    margin: auto 0;
}
.mainTtl.flex .en::before {
    width: 10px;
    height: 10px;
}
.mainTtl .jp {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.5!important;
    text-align: left!important;
    padding: 0 0 0 25px;
}
.mainTtl.flex .jp {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    padding: 0 0 0 10px;
}
.newsWrap .mainTtl .jp {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    padding: 0 0 0 20px;
}
.subTtl {
    color: #1FA1A0;
    margin: 0 0 75px;
}
.subTtl.white {
    color: #FFF;
}
.subTtl .jp {
    font-size: calc( 36 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5!important;
    text-align: center!important;
}
.subTtl .en {
    position: relative;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.5!important;
    text-align: center!important;
    text-indent: 0.1em;
    padding: 5px 0 0;
}

.btn {
    position: relative;
    display: block;
    width: 250px;
    height: 60px;
    background: #1FA1A0;
    border-radius: 30px;
    color: #FFF;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    text-indent: 0.1em;
    padding: 0 20px 0 0;
}
.btn.white {
    background: #FFF;
    color: #1FA1A0;
}
.btn.border {
    background: #FFF;
    border: #1FA1A0 solid 1px;
    color: #1FA1A0;
}
.btn.center {
    margin: 0 auto;
}
.btn:hover {
    background: #FBE51F;
    color: #1FA1A0;
}
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
.btn.white::after {
    background: url("../images/anchor2.png") no-repeat center center;
    background-size: contain;
}
.btn.border::after {
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
}
.btn:hover::after {
    right: 15px;
    background: url("../images/anchor3.png") no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 960px) {
.mainTtl {
    color: #1FA1A0;
    margin: 0 0 50px;
    transition: 0.5s 0s;
}
.mainTtl.white {
    color: #FFF;
}
a:hover .mainTtl.flex {
    color: #FBE51F;
}
a:hover .mainTtl.flex.white {
    color: #FFF;
}
.mainTtl.white {
    color: #FFF;
}
.mainTtl.flex {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 0 0 15px;
}
.newsWrap .mainTtl {
    margin: 0 0 15px;
}
.mainTtl.ttlWrap {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 50px;
}
.mainTtl .en {
    position: relative;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5!important;
    text-align: left!important;
    padding: 0 0 0 20px;
}
.mainTtl.flex .en,
.newsWrap .mainTtl .en {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 0 20px;
}
.mainTtl .en::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #FBE51F;
    border-radius: 50%;
    margin: auto 0;
}
.mainTtl.flex .en::before {
    width: 10px;
    height: 10px;
}
.mainTtl .jp {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.5!important;
    text-align: left!important;
    padding: 0 0 0 20px;
}
.mainTtl.flex .jp {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    padding: 0 0 0 10px;
}
.newsWrap .mainTtl .jp {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    padding: 0 0 0 20px;
}
.subTtl {
    color: #1FA1A0;
    margin: 0 0 50px;
}
.subTtl.white {
    color: #FFF;
}
.subTtl .jp {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5!important;
    text-align: center!important;
}
.subTtl .en {
    position: relative;
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.5!important;
    text-align: center!important;
    text-indent: 0.1em;
    padding: 5px 0 0;
}

.btn {
    position: relative;
    display: block;
    width: 250px;
    height: 60px;
    background: #1FA1A0;
    border-radius: 30px;
    color: #FFF;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    text-indent: 0.1em;
    padding: 0 20px 0 0;
}
.btn.white {
    background: #FFF;
    color: #1FA1A0;
}
.btn.border {
    background: #FFF;
    border: #1FA1A0 solid 1px;
    color: #1FA1A0;
}
.btn.center {
    margin: 0 auto;
}
main div.headerWrap div.headerL aside ul li .btn,
main#recruit section#job-description div.inner .side ul li .btn {
    width: 250px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px 0 0;
}
.btn:hover {
    background: #FBE51F;
    color: #1FA1A0;
}
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
.btn.white::after {
    background: url("../images/anchor2.png") no-repeat center center;
    background-size: contain;
}
.btn.border::after {
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
}
main div.headerWrap div.headerL aside ul li .btn::after,
main#recruit section#job-description div.inner .side ul li .btn::after {
    right: 10px;
}
.btn:hover::after {
    right: 15px;
    background: url("../images/anchor3.png") no-repeat center center;
    background-size: contain;
}
main div.headerWrap div.headerL aside ul li .btn:hover::after,
main#recruit section#job-description div.inner .side ul li .btn:hover::after {
    right: 5px;
}
}

/*----- header -----*/
header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 150px;
}
header.index {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
header .logo {
    width: 280px;
    height: 104px;
    margin: 0 5vw;
}

.recruitBtn {
    position: fixed;
    z-index: 10001;
    top: 45px;
    right: calc(2.5vw + min(calc(2.5vw + 70px), 120px));
    display: flex;
    align-items: center;
    width: 250px;
    height: 60px;
    background: #FBE51F;
    border-radius: 30px;
    color: #1FA1A0;
    padding: 0 20px 0 40px;
    transition: 0.5s 0s;
}
.recruitBtn:hover {
    background: #1FA1A0;
    color: #FFF;
}
.recruitBtn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
.recruitBtn:hover::after {
    right: 15px;
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
}
.recruitBtn p {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.25;
    padding: 0 0 5px;
}
.recruitBtn p span {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
}
.recruitBtn a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media screen and (max-width: 960px) {
header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 110px;
}
header.index {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
header .logo {
    width: 140px;
    height: 52px;
    margin: 0 5vw;
}

.recruitBtn {
    position: fixed;
    z-index: 10001;
    top: 25px;
    right: 110px;
    display: flex;
    align-items: center;
    width: 225px;
    height: 60px;
    background: #FBE51F;
    border-radius: 30px;
    color: #1FA1A0;
    padding: 0 20px 0 40px;
    transition: 0.5s 0s;
}
#g-nav .recruitBtn {
    opacity: 0;
}
#g-nav.panelactive .recruitBtn {
    opacity: 1;
}
.recruitBtn:hover {
    background: #1FA1A0;
    color: #FFF;
}
#g-nav .recruitBtn:hover {
    background: #FFF;
    color: #1FA1A0;
}
.recruitBtn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
.recruitBtn:hover::after {
    right: 15px;
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
}
#g-nav .recruitBtn:hover::after {
    background: url("../images/anchor2.png") no-repeat center center;
    background-size: contain;
}
.recruitBtn p {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.25;
    padding: 0 0 5px;
}
.recruitBtn p span {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
}
.recruitBtn a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
}

/*----- works -----*/
#works article {
    display: flex!important;
    flex-direction: column!important;
}
section#works article,
main#works div.archive article {
    position: relative;
}
section#works article {
    overflow: hidden;
    background: #FFF;
    border-top-left-radius: 30px;
    padding: 0 0 25px;
}
main#works article {
    margin: 0 0 50px;
}
section#works article a,
main#works div.archive article a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works article figure {
    margin: 0 0 25px;
}
#works article figure img {
    transition: 0.5s 0s;
}
#works article:hover figure img {
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
}
main#works article figure img {
    border-top-left-radius: 30px;
}
section#works article div.block {
    margin: 0 7.5%;
}
#works article div.information {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
#works article div.information p.date {
    color: #1FA1A0;
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
    padding: 0 1em 0 0;
}
#works article div.information ul.cat {
    display: flex;
    flex-wrap: wrap;
}
main#works aside ul.cat {
}
#works article div.information ul.cat li,
main#works aside ul.cat li {
    position: relative;
    background: #1FA1A0;
    border-radius: 12px;
    color: #FFF;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    line-height: 24px;
    text-align: center;
    padding: 0 1.5em;
    margin: 0 5px 0 0;
}
main#works aside ul.cat li,
main#works div.inner.single  article div.information ul.cat li {
    transition: 0.5s 0s;
}
main#works aside ul.cat li {
    margin: 0 0 20px;
}
main#works aside ul.cat li:hover,
main#works div.inner.single  article div.information ul.cat li:hover {
    background: #FBE51F;
    color: #1FA1A0;
}
#works article div.information ul.cat li a,
main#works aside ul.cat li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works article .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
}
#works article div.more {
    position: relative;
}
#works article div.more::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url("../images/anchor_big3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
#works article:hover div.more::after {
    right: -5px;
}
#works article div.more {
    margin-top: auto;
}
section#works article div.more {
    margin: auto 7.5% 0;
}
#works article div.more p {
    color: #1FA1A0;
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    padding: 0 60px 0 0;
}

@media screen and (max-width: 960px) {
#works article {
    display: flex!important;
    flex-direction: column!important;
}
section#works article,
main#works div.archive article {
    position: relative;
}
section#works article {
    overflow: hidden;
    background: #FFF;
    border-top-left-radius: 30px;
    padding: 0 0 25px;
}
main#works article {
    margin: 0 0 50px;
}
section#works article a,
main#works div.archive article a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works article figure {
    margin: 0 0 25px;
}
#works article figure img {
    transition: 0.5s 0s;
}
#works article:hover figure img {
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
}
main#works article figure img {
    border-top-left-radius: 30px;
}
section#works article div.block {
    margin: 0 7.5%;
}
#works article div.information {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 5px;
}
#works article div.information p.date {
    color: #1FA1A0;
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
    padding: 0 1em 0 0;
}
#works article div.information ul.cat {
    display: flex;
    flex-wrap: wrap;
}
main#works aside ul.cat {
}
#works article div.information ul.cat li,
main#works aside ul.cat li {
    position: relative;
    background: #1FA1A0;
    border-radius: 12px;
    color: #FFF;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    line-height: 24px;
    text-align: center;
    padding: 0 1.5em;
    margin: 0 5px 0 0;
}
main#works aside ul.cat li,
main#works div.inner.single  article div.information ul.cat li {
    transition: 0.5s 0s;
}
main#works aside ul.cat li {
    margin: 0 0 20px;
}
main#works aside ul.cat li:hover,
main#works div.inner.single  article div.information ul.cat li:hover {
    background: #FBE51F;
    color: #1FA1A0;
}
#works article div.information ul.cat li a,
main#works aside ul.cat li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works article .ttl {
    font-size: calc( 18 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
}
#works article div.more {
    position: relative;
}
#works article div.more::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url("../images/anchor_big3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
#works article:hover div.more::after {
    right: -5px;
}
#works article div.more {
    margin-top: auto;
}
section#works article div.more {
    margin: auto 7.5% 0;
}
#works article div.more p {
    color: #1FA1A0;
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    padding: 0 60px 0 0;
}
}

/*----- news -----*/
#news div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
#news div.inner.single {
    padding: 0 0 200px;
}
#news div.inner article {
    background: #F2F1E6;
    border-top-left-radius: 30px;
    padding: 25px 7.5% 50px;
    margin: 0 0 50px;
}
#news div.inner.archive article {
    position: relative;
    transition: 0.5s 0s;
}
section#news div.inner article {
    margin: 0 0 25px;
}
#news div.inner.archive article:last-of-type {
    margin: 0 0 100px;
}
#news div.inner.single article {
    padding: 50px 7.5%;
}
#news div.inner.archive article:hover {
    background: #1FA1A0;
}
#news div.inner.archive article a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news div.inner article div.information,
.newsWrap article div.information {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.newsWrap article div.information {
    margin: 0;
}
#news div.inner article div.information p.date,
.newsWrap article div.information p.date {
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
    padding: 0 1em 0 0;
}
.newsWrap article div.information p.date {
    font-size: calc( 12 / var(--root-font-size) * 1rem);
}
#news div.inner article div.information ul.cat,
.newsWrap article div.information ul.cat {
    display: flex;
    flex-wrap: wrap;
}
#news div.inner article div.information ul.cat li,
.newsWrap article div.information ul.cat li {
    position: relative;
    background: #FBE51F;
    border-radius: 12px;
    color: #1FA1A0;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    line-height: 24px;
    padding: 0 1.5em;
}
.newsWrap article div.information ul.cat li {
    font-size: calc( 10 / var(--root-font-size) * 1rem);
    line-height: 20px;
}
#news div.inner article div.information ul.cat li {
    transition: 0.5s 0s;
}
#news div.inner article div.information ul.cat li:hover {
    background: #1FA1A0;
    color: #FBE51F;
}
#news div.inner article div.information ul.cat li a,
.newsWrap article div.information ul.cat li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news div.inner article .ttl {
    color: #1FA1A0;
    font-size: calc( 20 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
.newsWrap article .ttl {
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
}
#news div.inner.single article .ttl {
    border-bottom: #1FA1A0 solid 2px;
    padding: 0 0 15px;
    margin: 0 0 25px;
}
#news div.inner.archive article div.information p.date,
#news div.inner.archive article .ttl {
    transition: 0.5s 0s;
}
#news div.inner.archive article:hover div.information p.date,
#news div.inner.archive article:hover .ttl {
    color: #FFF;
}
#news div.inner.single article div.content {
}
#news div.inner.single article div.content p {
    line-height: 1.75;
    margin: 0 0 25px;
}
#news div.inner.single article div.content img {
    max-width: 100%;
    height: auto;
    margin: 0 0 25px;
}
#news div.inner.single article div.content .youtube {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    margin: 0 0 25px;
}
#news div.inner.single article div.content .youtube iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 0;
}
#news div.inner.single article div.content .wp-caption {
    max-width: 100%;
}

#pagenation {
    width: 100%;
    background: #F2F1E6;
    padding: 50px 0;
}
#pagenation ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
#pagenation ul li {
   font-size: calc( 14 / var(--root-font-size) * 1rem );
   font-weight: 700;
   margin: 0 1em!important;
}
#pagenation ul li span.current {
    color: #1FA1A0;
}
#pagenation ul li a {
    text-decoration: none;
}

@media screen and (max-width: 960px) {
#news div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
#news div.inner.single {
    padding: 0 0 200px;
}
#news div.inner article {
    background: #F2F1E6;
    border-top-left-radius: 30px;
    padding: 25px 5vw;
    margin: 0 0 25px;
}
#news div.inner.archive article {
    position: relative;
    transition: 0.5s 0s;
}
section#news div.inner article {
    margin: 0 0 25px;
}
#news div.inner.archive article:last-of-type {
    margin: 0 0 50px;
}
#news div.inner.single article {
    padding: 50px 5vw;
}
#news div.inner.archive article:hover {
    background: #1FA1A0;
}
#news div.inner.archive article a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news div.inner article div.information,
.newsWrap article div.information {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 5px;
}
.newsWrap article div.information {
    margin: 0;
}
#news div.inner article div.information p.date,
.newsWrap article div.information p.date {
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
    padding: 0 1em 0 0;
}
.newsWrap article div.information p.date {
    font-size: calc( 12 / var(--root-font-size) * 1rem);
}
#news div.inner article div.information ul.cat,
.newsWrap article div.information ul.cat {
    display: flex;
    flex-wrap: wrap;
}
#news div.inner article div.information ul.cat li,
.newsWrap article div.information ul.cat li {
    position: relative;
    background: #FBE51F;
    border-radius: 12px;
    color: #1FA1A0;
    font-size: calc( 12 / var(--root-font-size) * 1rem);
    line-height: 24px;
    padding: 0 1.5em;
}
.newsWrap article div.information ul.cat li {
    font-size: calc( 10 / var(--root-font-size) * 1rem);
    line-height: 20px;
}
#news div.inner article div.information ul.cat li {
    transition: 0.5s 0s;
}
#news div.inner article div.information ul.cat li:hover {
    background: #1FA1A0;
    color: #FBE51F;
}
#news div.inner article div.information ul.cat li a,
.newsWrap article div.information ul.cat li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news div.inner article .ttl {
    color: #1FA1A0;
    font-size: calc( 18 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.5;
}
.newsWrap article .ttl {
    font-size: calc( 14 / var(--root-font-size) * 1rem);
    line-height: 1.5;
}
#news div.inner.single article .ttl {
    border-bottom: #1FA1A0 solid 2px;
    padding: 0 0 15px;
    margin: 0 0 25px;
}
#news div.inner.archive article div.information p.date,
#news div.inner.archive article .ttl {
    transition: 0.5s 0s;
}
#news div.inner.archive article:hover div.information p.date,
#news div.inner.archive article:hover .ttl {
    color: #FFF;
}
#news div.inner.single article div.content {
}
#news div.inner.single article div.content p {
    line-height: 1.75;
    margin: 0 0 25px;
}
#news div.inner.single article div.content img {
    max-width: 100%;
    height: auto;
    margin: 0 0 25px;
}
#news div.inner.single article div.content .youtube {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    margin: 0 0 25px;
}
#news div.inner.single article div.content .youtube iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 0;
}
#news div.inner.single article div.content .wp-caption {
    max-width: 100%;
}
#news div.inner.single article div.content figure {
    margin: 0;
}

#pagenation {
    width: 100%;
    background: #F2F1E6;
    padding: 25px 0;
}
#pagenation ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
#pagenation ul li {
   font-size: calc( 14 / var(--root-font-size) * 1rem );
   font-weight: 700;
   margin: 0 1em!important;
}
#pagenation ul li span.current {
    color: #1FA1A0;
}
#pagenation ul li a {
    text-decoration: none;
}
#pagenation ul li a img {
    width: 20px!important;
    height: 20px!important;
}
}

/*----- contact -----*/
div.contactWrap {
    width: 100%;
    background: #1FA1A0;
    color: #FFF;
    padding: 75px 0 100px;
}
div.contactWrap.recruit {
    position: relative;
    padding: 50px 0 100px;
}
div.contactWrap.recruit::before {
    content: "";
    position: absolute;
    top: -7.5vw;
    left: 0;
    width: 100%;
    height: 7.5vw;
    background: url("../images/line_green.png") no-repeat center top;
    background-size: cover;
}
div.contactWrap div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
div.contactWrap.recruit div.inner div.block {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
div.contactWrap.recruit div.inner div.block:last-of-type {
    border-top: #FFF dashed 1px;
    padding: 50px 0 0;
    margin: 50px auto 0;
}
div.contactWrap div.inner p {
    line-height: 1.75;
    text-align: center;
}
div.contactWrap div.inner p.copy {
    font-size: calc( 30 / var(--root-font-size) * 1rem );
    font-weight: 700;
    margin: 0 0 75px;
}
div.contactWrap div.inner p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    font-weight: 700;
    margin: 0 0 15px;
}
div.contactWrap div.inner p.txt {
    padding: 0 0 50px;
}
div.contactWrap.recruit div.inner p.txt {
    padding: 0 0 25px;
}

@media screen and (max-width: 960px) {
div.contactWrap {
    width: 100%;
    background: #1FA1A0;
    color: #FFF;
    padding: 50px 0;
}
div.contactWrap.recruit {
    position: relative;
    padding: 50px 0;
}
div.contactWrap.recruit::before {
    content: "";
    position: absolute;
    top: -7.5vw;
    left: 0;
    width: 100%;
    height: 7.5vw;
    background: url("../images/line_green.png") no-repeat center top;
    background-size: cover;
}
div.contactWrap div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
div.contactWrap.recruit div.inner div.block {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
div.contactWrap.recruit div.inner div.block:last-of-type {
    border-top: #FFF dashed 1px;
    padding: 50px 0 0;
    margin: 50px auto 0;
}
div.contactWrap div.inner p {
    line-height: 1.75;
    text-align: center;
}
div.contactWrap div.inner p.copy {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    margin: 0 0 50px;
}
div.contactWrap div.inner p.ttl {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    font-weight: 700;
    margin: 0 0 15px;
}
div.contactWrap div.inner p.txt {
    text-align: left;
    padding: 0 20px 50px;
}
div.contactWrap.recruit div.inner p.txt {
    padding: 0 20px 25px;
}
}

/*----- footer -----*/
footer {
    width: 100%;
    background: url("../images/bg_logo2.png") no-repeat right 7.5% bottom -38px;
    background-size: 420px 168px;
}
footer div.flexWrap,
#g-nav div.inner div.flexWrap {
    align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 75px 0 25px;
    margin: 0 auto;
}
#g-nav div.inner div.flexWrap {
    padding: 150px 0 25px;
}
footer div.flexWrap div.flexL,
#g-nav div.inner div.flexWrap div.flexL {
    width: 70%;
}
footer div.flexWrap div.flexL nav,
#g-nav div.inner div.flexWrap div.flexL nav {
    display: flex;
}
footer div.flexWrap div.flexL nav ul,
#g-nav div.inner div.flexWrap div.flexL nav ul {
    padding: 0 10% 0 0;
}
footer div.flexWrap div.flexL nav ul li a,
#g-nav div.inner div.flexWrap div.flexL nav ul li a {
    color: #1FA1A0;
    text-decoration: none;
}
#g-nav div.inner div.flexWrap div.flexL nav ul li a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav ul li a:hover,
#g-nav div.inner div.flexWrap div.flexL nav ul li a:hover {
    color: #FBE51F;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li {
    position: relative;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 0 20px;
    margin: 0 0 1em;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li:last-child,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li:last-child {
    margin: 0 0 3em;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li::before,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 1px;
    background: #1FA1A0;
    margin: auto 0;
}
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li::before {
    background: #FFF;
}
footer div.flexWrap div.flexR,
#g-nav div.inner div.flexWrap div.flexR {
    padding: 0 0 25px;
}
footer div.flexWrap div.flexR div.logo,
#g-nav div.inner div.flexWrap div.flexR div.logo {
    margin: 0 0 25px;
}
footer div.flexWrap div.flexR p,
#g-nav div.inner div.flexWrap div.flexR p {
    color: #1FA1A0;
    line-height: 1.75;
}
#g-nav div.inner div.flexWrap div.flexR p {
    color: #FFF;
}
footer div.flexWrap div.flexR p span,
#g-nav div.inner div.flexWrap div.flexR p span {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexR p a,
#g-nav div.inner div.flexWrap div.flexR p a {
    color: #1FA1A0;
    text-decoration: none;
}
#g-nav div.inner div.flexWrap div.flexR p a {
    color: #FFF;
}
footer div.flexWrap div.flexR p.link a,
#g-nav div.inner div.flexWrap div.flexR p.link a {
    border-bottom: #1FA1A0 solid 1px;
    letter-spacing: 0.1em;
    text-indent: -0.1em;
    padding: 0 0 0.25em;
}
#g-nav div.inner div.flexWrap div.flexR p.link a {
    border-bottom: #FFF solid 2px;
}
footer div.flexWrap div.flexR p a:hover,
#g-nav div.inner div.flexWrap div.flexR p a:hover {
    color: #FBE51F;
}
footer div.flexWrap div.flexR p.link,
#g-nav div.inner div.flexWrap div.flexR p.link {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.75;
    text-align: right;
    margin: 15px 0 0;
}

footer .copyright {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    line-height: 50px;
    text-align: center;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: url("../images/bg_logo2.png") no-repeat center bottom -38px;
    background-size: 315px 126px;
    margin: 0 0 60px;
}
footer div.flexWrap,
#g-nav div.inner div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    padding: 50px 0 25px;
    margin: 0 auto;
}
#g-nav div.inner div.flexWrap {
    padding: 125px 0 50px;
}
footer div.flexWrap div.flexL,
#g-nav div.inner div.flexWrap div.flexL {
    width: 100%;
}
footer div.flexWrap div.flexL nav,
#g-nav div.inner div.flexWrap div.flexL nav {
    display: flex;
    flex-wrap: wrap;
}
footer div.flexWrap div.flexL nav ul,
#g-nav div.inner div.flexWrap div.flexL nav ul {
    width: 337.5px;
    padding: 0;
}
footer div.flexWrap div.flexL nav ul li a,
#g-nav div.inner div.flexWrap div.flexL nav ul li a {
    color: #1FA1A0;
    text-decoration: none;
}
#g-nav div.inner div.flexWrap div.flexL nav ul li a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav ul li a:hover,
#g-nav div.inner div.flexWrap div.flexL nav ul li a:hover {
    color: #FBE51F;
}
footer div.flexWrap div.flexL nav ul li ul.subNav,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav {
    display: flex;
    flex-wrap: wrap;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li {
    position: relative;
    width: 50%;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 0 20px;
    margin: 0 0 0.5em;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li:last-child,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li:last-child {
    margin: 0 0 calc(0.5em + 15px);
}
footer div.flexWrap div.flexL nav ul li ul.subNav li::before,
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 1px;
    background: #1FA1A0;
    margin: auto 0;
}
#g-nav div.inner div.flexWrap div.flexL nav ul li ul.subNav li::before {
    background: #FFF;
}
footer div.flexWrap div.flexR,
#g-nav div.inner div.flexWrap div.flexR {
    padding: 25px 0 0;
}
footer div.flexWrap div.flexR div.logo,
#g-nav div.inner div.flexWrap div.flexR div.logo {
    width: 252px;
    margin: 0 0 25px;
}
footer div.flexWrap div.flexR p,
#g-nav div.inner div.flexWrap div.flexR p {
    color: #1FA1A0;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.75;
}
#g-nav div.inner div.flexWrap div.flexR p {
    color: #FFF;
}
footer div.flexWrap div.flexR p span,
#g-nav div.inner div.flexWrap div.flexR p span {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexR p a,
#g-nav div.inner div.flexWrap div.flexR p a {
    color: #1FA1A0;
    text-decoration: none;
}
#g-nav div.inner div.flexWrap div.flexR p a {
    color: #FFF;
}
footer div.flexWrap div.flexR p.link a,
#g-nav div.inner div.flexWrap div.flexR p.link a {
    border-bottom: #1FA1A0 solid 1px;
    letter-spacing: 0.1em;
    text-indent: -0.1em;
    padding: 0 0 0.25em;
}
#g-nav div.inner div.flexWrap div.flexR p.link a {
    border-bottom: #FFF solid 2px;
}
footer div.flexWrap div.flexR p a:hover,
#g-nav div.inner div.flexWrap div.flexR p a:hover {
    color: #FBE51F;
}
footer div.flexWrap div.flexR p.link,
#g-nav div.inner div.flexWrap div.flexR p.link {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.75;
    text-align: right;
    margin: 15px 0 0;
}

footer .copyright {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    line-height: 50px;
    text-align: center;
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- page_top -----*/
/*リンクの形状*/
/*リンクを右下に固定*/
#page_top {
    position: fixed;
    right: 2.5vw;
    z-index: 9;
    width: 70px;
    height: 70px;
    background: url("../images/anchor_big2.png") no-repeat center center;
    background-size: cover;
    transform: translateY(120px);
    cursor: pointer;
}
/*上に上がる動き*/
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    transform: translateY(120px);
  }
  to {
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(120px);
  }
}

#page_top p {
    position: absolute;
    bottom: -2em;
    left: 0;
    right: 0;
    color: #1FA1A0;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    text-indent: 0.1em;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
#page_top {
    display: none;
}
}

#scrollNav {
    position: fixed;
    left: 0;
    bottom: -60px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #1FA1A0;
    padding: 10px;
}
#scrollNav .recruit {
    position: relative;
    display: flex;
    align-items: center;
    width: 250px;
    height: 40px;
    background: #FBE51F;
    border-radius: 20px;
    color: #1FA1A0;
    padding: 0 20px 0 40px;
    margin: 0 5px;
    transition: 0.5s 0s;
}
#scrollNav .top {
    position: relative;
    display: flex;
    align-items: center;
    width: 90px;
    height: 40px;
    background: #FFF;
    border-radius: 20px;
    color: #1FA1A0;
    padding: 0 40px 0 20px;
    margin: 0 5px;
    transition: 0.5s 0s;
}
#scrollNav .recruit:hover {
    background: #FFF;
}
#scrollNav .top:hover {
    background: #FBE51F;
}
#scrollNav .recruit::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
#scrollNav .recruit:hover::after {
    background: url("../images/anchor1.png") no-repeat center center;
    background-size: contain;
}
#scrollNav .top::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/anchor6.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
#scrollNav .top:hover::after {
    background: url("../images/anchor7.png") no-repeat center center;
    background-size: contain;
}
#scrollNav .recruit p {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    font-weight: 400;
    line-height: 1.25;
    padding: 0 0 5px;
}
#scrollNav .top p {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.25;
    padding: 0 0 5px;
}
#scrollNav .recruit p span {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0 0.5em 0 0;
}
#scrollNav .recruit a,
#scrollNav .top a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: -125%;
    left: 0;
    width: 100%;
    height: 90vh;/*ナビの高さ*/
    max-height: 540px;
    background: #1FA1A0 url("../images/bg_logo3.png") no-repeat right 7.5% bottom -38px;
    background-size: 420px 168px;
    border-bottom-left-radius: 45px;
    color: #FFF;
    transition: all 0.5s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    top: 0;
    z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 90vh;
    max-height: 540px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav div.inner {
    opacity: 0;
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}

@media screen and (max-width: 960px) {
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: -125%;
    left: 0;
    width: 100%;
    height: 100%;/*ナビの高さ*/
    max-height: inherit;
    background: #1FA1A0 url("../images/bg_logo3.png") no-repeat center bottom -38px;
    background-size: 315px 126px;
    border-bottom-left-radius: 45px;
    color: #FFF;
    transition: all 0.5s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    top: 0;
    z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    max-height: inherit;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
}

/*ボタンの設定*/
.openBtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: 40px;
    right: 2.5vw;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #1FA1A0;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
}
.openBtn.active {
    background: #FFF;
}
.openBtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background: #FFF;
    border-radius: 1.5px;
    margin: 0 auto;
    transition: all 0.5s;
}
.openBtn.active span {
    background: #1FA1A0;
}
.openBtn span:nth-of-type(1) {
    top: 0;
    bottom: 12.5px;
    margin: auto;
    animation: menu-bar1 0.5s forwards;
}
.openBtn span:nth-of-type(2) {
    top: 12.5px;
    bottom: 0;
    margin: auto;
    animation: menu-bar2 0.5s forwards;
}
.openBtn.active span:nth-of-type(1) {
    animation: menu-active-bar1 0.5s forwards;
}
.openBtn.active span:nth-of-type(2) {
    animation: menu-active-bar2 0.5s forwards;
}

@media screen and (max-width: 960px) {
.openBtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: 20px;
    right: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: #1FA1A0;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
}
.openBtn.active {
    background: #FFF;
}
.openBtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background: #FFF;
    border-radius: 1.5px;
    margin: 0 auto;
    transition: all 0.5s;
}
}

@keyframes menu-bar1 {
  0% {
    transform: translateY(6.25px) rotate(30deg);
  }
  50% {
    transform: translateY(6.25px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar2 {
  0% {
    transform: translateY(-6.25px) rotate(-30deg);
  }
  50% {
    transform: translateY(-6.25px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-active-bar1 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6.25px) rotate(0);
  }
  100% {
    transform: translateY(6.25px) rotate(30deg);
  }
}
@keyframes menu-active-bar2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6.25px) rotate(0);
  }
  100% {
    transform: translateY(-6.25px) rotate(-30deg);
  }
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(75px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}