@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.05em;
}
* {
    letter-spacing: var(--spacing);
}

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

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: #000; text-decoration: none;}
a:hover {color: #F8B62D; text-decoration: none;}

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

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

.clear {clear: both;}

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

::selection {
    background: #F8B62D;
    color: #FFF;
}
::-moz-selection {
    background: #F8B62D;
    color: #FFF;
}


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

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

/*----- common -----*/
main {
    display: block; /* IE */
}

.mainTtl {
    width: 90%;
    max-width: 1200px;
    color: #007DB6;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 auto 50px;
}
.mainTtl .jp {
    letter-spacing: 0.1em;
}
.mainTtl .jp.circle {
    position: relative;
    padding: 0 0 0 20px;
}
.mainTtl .jp.circle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
.mainTtl .en {
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
.subTtl {
    color: #007DB6;
    line-height: 1.5;
    font-weight: 700;
}
.subTtl.width {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 50px;
}
.subTtl .jp {
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
.subTtl .en {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}

.flexWrap {
    display: flex;
}
div.txtBlock p {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    line-height: 2;
}
div.txtBlock.center p {
    text-align: center;
    text-indent: 0.05em;
}
div.txtBlock p span.blue {
    color: #007DB6;
}
div.txtBlock p span.bold {
    font-weight: 700;
}
div.txtBlock p span.big {
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    padding: 0 0.5em;
}

.wpcf7-submit {
    position: relative;
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background: #F8B62C;
    border: #F8B62C solid 2px;
    border-radius: 10px;
    color: #FFF;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 30px;
    margin: 0 auto;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    transition: 0.5s 0s;
}
.btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background: #007DB6;
    border: #007DB6 solid 2px;
    border-radius: 10px;
    color: #FFF;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0 30px;
    transition: 0.5s 0s;
}
.ttl {
    position: relative;
}
header .site-header.fixed-header div.flexWrap .btn {
    height: 54px;
}
footer .btn {
    width: 315px;
    height: 75px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    margin: 0 0 30px;
}
.btn.center {
    margin: 0 auto;
}
div.txtBlock .btn {
    margin: 50px 0 0;
}
div.txtBlock .btn.center {
    margin: 50px auto 0;
}
.btn.yellow {
    background: #F8B62C;
    border: #F8B62C solid 2px;
}
.btn.gray {
    background: #E3E3E3;
    border: #E3E3E3 solid 2px;
    color: #007DB6;
}
.btn.contact,
.btn.entry {
    padding: 0 30px 0 60px;
}
footer .btn.contact {
    padding: 0 30px 0 90px;
}
.btn.contact::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 25px;
    height: 19px;
    background: url("../images/icon_mail.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
.btn.entry::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 25px;
    height: 19px;
    background: url("../images/icon_entry.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
footer .btn.contact::before {
    left: 50px;
}
.btn.contact:hover::before {
    background: url("../images/icon_mail_b.svg") no-repeat center center;
    background-size: contain;
}
.btn.entry:hover::before {
    background: url("../images/icon_entry_b.svg") no-repeat center center;
    background-size: contain;
}
.btn.shadow {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.btn:hover {
    background: #FFF;
    border: #007DB6 solid 2px;
    color: #007DB6;
}
.btn .arrow,
.ttl .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    margin: auto 0;
    transition: 0.5s 0s;
}
.post .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    margin: auto 0;
    transition: 0.5s 0s;
}
aside.contentsNav ul li .arrowWrap .arrow {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 12px;
    background: #007DB6;
    border-radius: 9999px;
    margin: 0 4.3px;
    transition: 0.5s 0s;
}
footer .btn.contact .arrow {
    right: 45px;
}
footer div.flexWrap div.flexL nav ul li .ttl .arrow {
    right: 10px;
    width: 15px;
}
.btn:hover .arrow,
.ttl:hover .arrow {
    right: 25px;
}
.btn:hover .arrow,
.btn.gray .arrow {
    background: #007DB6;
}
aside.contentsNav ul li:hover .arrowWrap .arrow {
    background: #FFF;
}
.post:hover .arrow {
    right: 5px;
}
footer .btn.contact:hover .arrow {
    right: 40px;
}
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow {
    right: 5px;
    background: #F8B62D;
}
#page_top .arrow {
    position: relative;
    display: inline-block;
    width: 3px;
    height: 30px;
    margin: 0 8.5px;
    border-radius: 9999px;
    background-color: #007DB6;
}
.btn .arrow::before,
.btn .arrow::after,
.ttl .arrow::before,
.ttl .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 10px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
.post .arrow::before,
.post .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7.5px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
aside.contentsNav ul li .arrowWrap .arrow::before,
aside.contentsNav ul li .arrowWrap .arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 8px;
    border-radius: 9999px;
    background-color: #007DB6;
    transform-origin: 50% calc(100% - 1px);
    transition: 0.5s 0s;
}
footer div.flexWrap div.flexL nav ul li .ttl .arrow::before,
footer div.flexWrap div.flexL nav ul li .ttl .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7.5px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
.arrow::before {
    transform: rotate(45deg);
}
.arrow::after {
    transform: rotate(-45deg);
}
.btn:hover .arrow::before,
.btn:hover .arrow::after,
.btn.gray .arrow::before,
.btn.gray .arrow::after {
    background: #007DB6;
}
aside.contentsNav ul li:hover .arrowWrap .arrow::before,
aside.contentsNav ul li:hover .arrowWrap .arrow::after {
    background: #FFF;
}
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow::before,
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow::after {
    background: #F8B62D;
}
#page_top .arrow::before,
#page_top .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 1.5px);
    width: 3px;
    height: 15px;
    border-radius: 9999px;
    background-color: #007db6;
    transform-origin: 50% 1.5px;
}
.btn:hover a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div#slider_horizontal {
    position: relative;
    width: 100%;
}
div#slider_horizontal ul.slider img {
    width: 100%;/*スライダー内の画像を横幅100%に*/
    height: auto;
    border-radius: 10px;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
div#slider_horizontal ul.slider .slick-slide {
    margin: 0 min(1vw, 15px);/*スライド左右の余白調整*/
}

@media screen and (max-width: 960px) {
.mainTtl {
    width: 85%;
    max-width: 1200px;
    color: #007DB6;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 auto 15px;
}
.mainTtl .jp {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
.mainTtl .jp.circle {
    position: relative;
    padding: 0 0 0 20px;
}
.mainTtl .jp.circle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
.mainTtl .en {
    font-size: calc( 38 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
.subTtl {
    color: #007DB6;
    line-height: 1.5;
    font-weight: 700;
}
.subTtl.width {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto 25px;
}
.subTtl .jp {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
.subTtl .en {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}

.flexWrap {
    display: flex;
}
div.txtBlock p {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    line-height: 2;
}
div.txtBlock.center p {
    text-align: center;
    text-indent: 0.05em;
}
div.txtBlock p span.blue {
    color: #007DB6;
}
div.txtBlock p span.bold {
    font-weight: 700;
}
div.txtBlock p span.big {
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    padding: 0 0.5em;
}

.wpcf7-submit {
    position: relative;
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background: #F8B62C;
    border: #F8B62C solid 2px;
    border-radius: 10px;
    color: #FFF;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 30px;
    margin: 0 auto;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    transition: 0.5s 0s;
}
.btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 240px;
    height: 60px;
    background: #007DB6;
    border: #007DB6 solid 2px;
    border-radius: 10px;
    color: #FFF;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0 30px;
    transition: 0.5s 0s;
}
.ttl {
    position: relative;
}
header .site-header div.flexWrap .btn {
    width: 120px;
    height: 50px;
    border-radius: 5px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
header .site-header.fixed-header div.flexWrap .btn {
    height: 50px;
}
footer .btn,
#g-nav .btn {
    width: 315px;
    height: 75px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    margin: 0 0 30px;
}
#g-nav .btn {
    margin: 0;
}
.btn.center {
    margin: 0 auto;
}
div.txtBlock .btn {
    margin: 25px 0 0;
}
div.txtBlock .btn.center {
    margin: 25px auto 0;
}
.btn.yellow {
    background: #F8B62C;
    border: #F8B62C solid 2px;
}
.btn.gray {
    background: #E3E3E3;
    border: #E3E3E3 solid 2px;
    color: #007DB6;
}
.btn.contact,
.btn.entry {
    padding: 0 30px 0 60px;
}
header .site-header div.flexWrap .btn.contact {
    padding: 0 0 0 45px;
}
footer .btn.contact,
#g-nav .btn.contact {
    padding: 0 30px 0 90px;
}
.btn.contact::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 25px;
    height: 19px;
    background: url("../images/icon_mail.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
header .site-header div.flexWrap .btn.contact::before {
    left: 10px;
}
.btn.entry::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 25px;
    height: 19px;
    background: url("../images/icon_entry.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
footer .btn.contact::before,
#g-nav .btn.contact::before {
    left: 50px;
}
.btn.contact:hover::before {
    background: url("../images/icon_mail_b.svg") no-repeat center center;
    background-size: contain;
}
.btn.entry:hover::before {
    background: url("../images/icon_entry_b.svg") no-repeat center center;
    background-size: contain;
}
.btn.shadow {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.btn:hover {
    background: #FFF;
    border: #007DB6 solid 2px;
    color: #007DB6;
}
.btn .arrow,
.ttl .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    margin: auto 0;
    transition: 0.5s 0s;
}
.post .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    margin: auto 0;
    transition: 0.5s 0s;
}
aside.contentsNav ul li .arrowWrap .arrow {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 12px;
    background: #007DB6;
    border-radius: 9999px;
    margin: 0 4.3px;
    transition: 0.5s 0s;
}
footer .btn.contact .arrow,
#g-nav .btn.contact .arrow {
    right: 45px;
}
footer div.flexWrap div.flexL nav ul li .ttl .arrow,
#g-nav div.flexWrap ul li .ttl .arrow {
    right: 10px;
    width: 15px;
}
.btn:hover .arrow,
.ttl:hover .arrow {
    right: 25px;
}
.btn:hover .arrow,
.btn.gray .arrow {
    background: #007DB6;
}
aside.contentsNav ul li:hover .arrowWrap .arrow {
    background: #FFF;
}
.post:hover .arrow {
    right: 5px;
}
footer .btn.contact:hover .arrow,
#g-nav .btn.contact:hover .arrow {
    right: 40px;
}
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow,
#g-nav div.flexWrap ul li .ttl:hover .arrow {
    right: 5px;
    background: #F8B62D;
}
#page_top .arrow {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 20px;
    margin: 0 8.5px;
    border-radius: 9999px;
    background-color: #007DB6;
}
.btn .arrow::before,
.btn .arrow::after,
.ttl .arrow::before,
.ttl .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 10px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
.post .arrow::before,
.post .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7.5px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
aside.contentsNav ul li .arrowWrap .arrow::before,
aside.contentsNav ul li .arrowWrap .arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 8px;
    border-radius: 9999px;
    background-color: #007DB6;
    transform-origin: 50% calc(100% - 1px);
    transition: 0.5s 0s;
}
footer div.flexWrap div.flexL nav ul li .ttl .arrow::before,
footer div.flexWrap div.flexL nav ul li .ttl .arrow::after,
#g-nav div.flexWrap ul li .ttl .arrow::before,
#g-nav div.flexWrap ul li .ttl .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7.5px;
    height: 2px;
    background: #FFF;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
    transition: 0.5s 0s;
}
.arrow::before {
    transform: rotate(45deg);
}
.arrow::after {
    transform: rotate(-45deg);
}
.btn:hover .arrow::before,
.btn:hover .arrow::after,
.btn.gray .arrow::before,
.btn.gray .arrow::after {
    background: #007DB6;
}
aside.contentsNav ul li:hover .arrowWrap .arrow::before,
aside.contentsNav ul li:hover .arrowWrap .arrow::after {
    background: #FFF;
}
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow::before,
footer div.flexWrap div.flexL nav ul li .ttl:hover .arrow::after,
#g-nav div.flexWrap ul li .ttl:hover .arrow::before,
#g-nav div.flexWrap ul li .ttl:hover .arrow::after {
    background: #F8B62D;
}
#page_top .arrow::before,
#page_top .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 10px;
    border-radius: 9999px;
    background-color: #007db6;
    transform-origin: 50% 1px;
}
.btn:hover a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div#slider_horizontal {
    position: relative;
    width: 100%;
}
div#slider_horizontal ul.slider img {
    width: 100%;/*スライダー内の画像を横幅100%に*/
    height: auto;
    border-radius: 10px;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
div#slider_horizontal ul.slider .slick-slide {
    margin: 0 min(1vw, 15px);/*スライド左右の余白調整*/
}
}

/*----- header -----*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 72px;
}
header .site-header {
    box-sizing: content-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
}
header .site-header div.flexWrap {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    height: 90px;
    padding: 0 2.5%;
    margin: 0 auto;
    transition: 0.5s 0s;
}
header .site-header.fixed-header div.flexWrap {
    height: 72px;
}
header .site-header .logo {
    width: 20vw;
    max-width: 240px;
    transition: 0.5s 0s;
}
header .site-header.fixed-header .logo {
    width: 18vw;
    max-width: 216px;
}
header nav,
header nav ul {
    align-items: center;
    justify-content: flex-end;
}
header nav {
}
header nav ul li {
    align-content: center;
    line-height: 1.5;
    padding: 5px min(4vw, 60px) 0 0;
}
header nav ul li p {
    font-size: min(0.875vw, calc( 10.5 / var(--root-font-size) * 1rem ));
    letter-spacing: 0.1em;
}
header nav ul li p.en {
    font-size: min(1.75vw, calc( 21 / var(--root-font-size) * 1rem ));
}

@media screen and (max-width: 960px) {
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 80px;
}
header .site-header {
    box-sizing: content-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
}
header .site-header div.flexWrap {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    height: 70px;
    padding: 0 75px 0 15px;
    margin: 0 auto;
    transition: 0.5s 0s;
}
header .site-header.fixed-header div.flexWrap {
    height: 70px;
}
header .site-header .logo {
    width: 36vw;
    max-width: 135px;
    transition: 0.5s 0s;
}
header .site-header.fixed-header .logo {
    width: 36vw;
    max-width: 135px;
}
header nav,
header nav ul {
    align-items: center;
    justify-content: flex-end;
}
header nav {
}
header nav ul li {
    align-content: center;
    line-height: 1.5;
    padding: 5px min(4vw, 60px) 0 0;
}
header nav ul li p {
    font-size: min(0.875vw, calc( 10.5 / var(--root-font-size) * 1rem ));
    letter-spacing: 0.1em;
}
header nav ul li p.en {
    font-size: min(1.75vw, calc( 21 / var(--root-font-size) * 1rem ));
}
}

/*----- main -----*/
/*----- About -----*/
#about div.issue {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main#index div.issue {
    padding: 75px 0 0;
}
main#about div.issue {
    padding: 150px 0 0;
}
#about div.issue .ttl {
    color: #007DB6;
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    text-indent: 0.1em;
}
#about div.issue .ttl.dot {
    position: relative;
    padding: 62px 0 0;
    margin: 25px 0 0;
}
#about div.issue .ttl.dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 7px;
    height: 37px;
    background: url("../images/dot.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}
#about div.issue div.box {
    position: relative;
    border: #007DB6 solid 2px;
    padding: 25px 0 0;
}
#about div.issue div.box::before {
    content: "Q";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    width: 50px;
    background: #FFF;
    color: #007DB6;
    font-size: calc( 22 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-indent: 0.05em;
    margin: 0 auto;
}
#about div.issue div.box ul {
    display: flex;
    justify-content: center;
    padding: 25px 0 50px;
}
#about div.issue div.box ul li {
    text-align: center;
    padding: 0 25px;
}
#about div.issue div.box ul li:last-child {
    position: relative;
    padding: 0 250px 0 25px;
}
#about div.issue div.box ul li:last-child::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 180px;
    height: 180px;
    background: url("../images/issue_img3_pc.png") no-repeat center center;
    background-size: contain;
}
#about div.issue div.box ul li figure {
    margin: 0 0 10px;
}
#about div.issue div.box ul li p {
    color: #007DB6;
    font-weight: 700;
    line-height: 1.5;
    text-indent: 0.05em;
}

section#service ul {
    width: 90%;
    max-width: 1000px;
}
main#index section#service ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px auto 0;
}
main#about section#service ul {
    margin: 50px auto 0;
}
section#service ul li.block {
    justify-content: space-between;
    width: 48.75%;
    border-radius: 10px;
    color: #FFF;
    margin: 0 0 25px;
}
main#index section#service ul li.block {
    width: 48.75%;
    padding: 25px 0 50px;
}
main#about section#service ul li.block {
    width: 100%;
    padding: 50px 0;
}
main#about section#service ul li.block:last-child {
    margin: 0;
}
section#service ul li.block.service_web {
    background: #008EB7;
}
section#service ul li.block.service_area {
    background: #F8B62C;
    color: #007DB6;
}
section#service ul li.block.service_ec {
    background: #007DB6;
}
section#service ul li.block.service_inn {
    background: #00A29A;
}
main#index section#service ul li.block div.txtBlock {
    width: 50%;
    margin: 0 0 0 7.5%;
}
main#about section#service ul li.block div.txtBlock {
    width: 65%;
    margin: 0 7.5% 0 0;
}
section#service ul li.block div.txtBlock p {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
section#service ul li.block div.txtBlock p.ttl {
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    margin: 5px 0 10px;
}
main#index section#service ul li.block div.txtBlock p.ttl.row {
    padding: 1.5em 0 0;
}
main#about section#service ul li.block div.ability {
    margin: 25px 0 0;
}
main#about section#service ul li.block div.ability p {
    position: relative;
    display: flex;
    align-items: center;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    margin: 0 0 15px;
}
main#about section#service ul li.block div.ability p::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #FFF;
    margin-left: 15px;
}
main#about section#service ul li.block.service_area div.ability p::after {
    background-color: #007DB6;
}
main#about section#service ul li.block div.ability ul {
    width: 100%;
    max-width: inherit;
    flex-wrap: wrap;
    margin: 0;
}
main#about section#service ul li.block div.ability ul li {
    background: #FFF;
    border-radius: 5px;
    color: #008EB7;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 25px;
    padding: 0 10px;
    margin: 0 10px 10px 0;
}
main#about section#service ul li.block div.ability ul li:last-child {
    margin: 0 0 10px 0;
}
main#about section#service ul li.block div.ability ul li::before {
    content: "#";
    color: #F8B62D;
}
section#service ul li.block div.imgBlock {
    align-self: center;
}
main#index section#service ul li.block div.imgBlock {
    width: 32.5%;
    margin: 0 5%;
}
main#about section#service ul li.block div.imgBlock {
    width: 15%;
    margin: 0 0 0 7.5%;
}

@media screen and (max-width: 960px) {
#about div.issue {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main#index div.issue {
    padding: 125px 0 0;
}
main#about div.issue {
    padding: 75px 0 0;
}
#about div.issue .ttl {
    color: #007DB6;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    text-indent: 0.1em;
}
#about div.issue .ttl.dot {
    position: relative;
    padding: 62px 0 0;
    margin: 25px 0 0;
}
#about div.issue .ttl.dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 7px;
    height: 37px;
    background: url("../images/dot.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}
#about div.issue div.box {
    position: relative;
    border: #007DB6 solid 2px;
    padding: 25px 0 160px;
}
#about div.issue div.box::before {
    content: "Q";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    width: 50px;
    background: #FFF;
    color: #007DB6;
    font-size: calc( 22 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-indent: 0.05em;
    margin: 0 auto;
}
#about div.issue div.box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 180px;
    height: 160px;
    background: url("../images/issue_img3_sp.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}
#about div.issue div.box ul {
    display: flex;
    justify-content: center;
    padding: 25px 0;
}
#about div.issue div.box ul li {
    width: 150px;
    text-align: center;
    padding: 0;
}
#about div.issue div.box ul li:last-child {
    position: inherit;
    padding: 0;
}
#about div.issue div.box ul li:last-child::after {
    content: none;
}
#about div.issue div.box ul li figure {
    margin: 0 0 10px;
}
#about div.issue div.box ul li p {
    color: #007DB6;
    font-weight: 700;
    line-height: 1.5;
    text-indent: 0.05em;
}

section#service div.txtBlock.center {
    width: 85%;
    margin: 0 auto;
}
section#service div.txtBlock.center p {
    text-align: inherit;
    text-indent: inherit;
}
section#service ul {
    width: 100%;
    max-width: 1000px;
}
main#index section#service ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px auto 0;
}
main#about section#service ul {
    margin: 50px auto 0;
}
section#service ul li.block {
    position: relative;
    justify-content: space-between;
    width: 100%;
    border-radius: 0;
    color: #FFF;
    margin: 0;
}
main#index section#service ul li.block {
    width: 100%;
    padding: 35px 0;
}
main#about section#service ul li.block {
    width: 100%;
    padding: 100px 0 50px;
}
main#about section#service ul li.block:last-child {
    margin: 0;
}
section#service ul li.block.service_web {
    background: #008EB7;
}
section#service ul li.block.service_area {
    background: #F8B62C;
    color: #007DB6;
}
section#service ul li.block.service_ec {
    background: #007DB6;
}
section#service ul li.block.service_inn {
    background: #00A29A;
}
main#index section#service ul li.block div.txtBlock {
    width: 85%;
    margin: 0 auto;
}
main#about section#service ul li.block div.txtBlock {
    width: 85%;
    margin: 0 auto;
}
section#service ul li.block div.txtBlock p {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
section#service ul li.block div.txtBlock p.copy {
    font-size: min(3.75vw, calc( 14 / var(--root-font-size) * 1rem ));
}
section#service ul li.block div.txtBlock p.ttl {
    font-size: min(6.4vw, calc( 24 / var(--root-font-size) * 1rem ));
    font-weight: 700;
    line-height: 1.5;
    margin: 5px 0 10px;
}
main#index section#service ul li.block div.txtBlock p.ttl.row {
    padding: 5px 0 calc(10px + 1.5em);
}
main#about section#service ul li.block.service_inn div.txtBlock p.ttl {
    margin: 10px 0 20px;
}
main#about section#service ul li.block div.ability {
    margin: 25px 0 0;
}
main#about section#service ul li.block div.ability p {
    position: relative;
    display: flex;
    align-items: center;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    margin: 0 0 15px;
}
main#about section#service ul li.block div.ability p::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #FFF;
    margin-left: 15px;
}
main#about section#service ul li.block.service_area div.ability p::after {
    background-color: #007DB6;
}
main#about section#service ul li.block div.ability ul {
    width: 100%;
    max-width: inherit;
    flex-wrap: wrap;
    margin: 0;
}
main#about section#service ul li.block div.ability ul li {
    background: #FFF;
    border-radius: 5px;
    color: #008EB7;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 25px;
    padding: 0 10px;
    margin: 0 10px 10px 0;
}
main#about section#service ul li.block div.ability ul li:last-child {
    margin: 0 0 10px 0;
}
main#about section#service ul li.block div.ability ul li::before {
    content: "#";
    color: #F8B62D;
}
section#service ul li.block div.imgBlock {
    position: absolute;
    top: 30px;
    right: 7.5%;
    align-self: auto;
}
main#index section#service ul li.block div.imgBlock {
    width: 30vw;
    max-width: 112px;
    margin: 0;
}
main#about section#service ul li.block div.imgBlock {
    width: 136px;
    margin: 0;
}
}

/*----- article -----*/
main#single {
    background: #E5F2F8;
    padding: 90px 0 150px;
}
main#works div.flexWrap,
main#news div.flexWrap,
main#single div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
main#works div.flexWrap div.flexL,
main#news div.flexWrap div.flexL {
    width: 70%;
    padding: 0 0 0 15%;
}
main#single div.flexWrap div.flexL {
    width: 70%;
}
main#single div.flexWrap div.flexL article {
    background: #FFF;
    border-radius: 10px;
    line-height: 1.5;
    padding: 75px 10% 100px;
    margin: 0 0 50px;
}
main#single div.flexWrap div.flexL article h1.ttl {
    font-size: calc( 26 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 50px;   
}

.content p {
    margin: 0 0 1.75em;
}
.content p.center {
    text-align: center;
}
.content a {
    text-decoration: underline;
}
.content a:hover {
    text-decoration: none;
}
.content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

.content .is-style-ttl_border_font16 {
    border-bottom: #7EBDDA solid 1px;
    color: #007DB6;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    padding: 15px 0;
    margin: 0 0 30px;
}
.content .is-style-ttl_dot_font24 {
    position: relative;
    color: #007DB6;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    padding: 0 0 0 20px;
    margin: 0 0 25px;
}
.content .is-style-ttl_dot_font24::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
.content .is-style-font12 {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}
.content .is-style-font14 {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
.content .is-style-font16 {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
.content .is-style-font20 {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
.content .is-style-font24 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}
.content .is-style-font30 {
    font-size: calc( 30 / var(--root-font-size) * 1rem );
}
.content .is-style-font_bold {
    font-weight: 700;
}
.content .is-style-font_blue {
    color: #007DB6;
}
.content .is-style-font_yellow {
    color: #F8B62D;
}
.content .is-style-font_gray {
    color: #707070;
}

main#works div.flexWrap div.flexL.archive,
main#news div.flexWrap div.flexL.archive {
    margin: 30px 0 0;
}
main#works div.flexWrap div.flexR,
main#news div.flexWrap div.flexR,
main#single div.flexWrap div.flexR {
    width: 25%;
}
main#works div.flexWrap div.flexR.sideNav p.ttl,
main#news div.flexWrap div.flexR.sideNav p.ttl,
main#single div.flexWrap div.flexR.sideNav p.ttl {
    position: relative;
    color: #007DB6;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 30px;
    padding: 0 0 0 13px;
}
main#works div.flexWrap div.flexR.sideNav p.ttl::before,
main#news div.flexWrap div.flexR.sideNav p.ttl::before,
main#single div.flexWrap div.flexR.sideNav p.ttl::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
main#works div.flexWrap div.flexR.sideNav select::-ms-expand,
main#news div.flexWrap div.flexR.sideNav select::-ms-expand,
main#single div.flexWrap div.flexR.sideNav select::-ms-expand {
	display: none;
}
main#works div.flexWrap div.flexR.sideNav select,
main#news div.flexWrap div.flexR.sideNav select,
main#single div.flexWrap div.flexR.sideNav select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 300px;
    height: 60px;
    background: #FFF url("../images/icon_arrow.svg") no-repeat right 20px center;
    background-size: 20px 20px;
    border: #007DB6 solid 2px;
    border-radius: 10px;
    color: #007DB6;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 56px;
    padding: 0 50px 0 25px;
    margin: 0;
}

#works .block {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFF;
    border-radius: 10px;
}
#works .block a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works .block .img.zoom {
    overflow: hidden;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
#works .block .img.zoom img {
    transform: scale(1.1);
	transition: 0.5s 0s;
}
#works .block:hover .img.zoom img {
	transform: scale(1);
}
#works .block p.type {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    margin: 10px 5%;
}
#single .works article p.type {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    margin: 0 0 10px;
}
#works .block ul.cat {
    flex-wrap: wrap;
    margin: 0 5% 10px;
}
#single .works article ul.cat {
    flex-wrap: wrap;
    margin: 0 0 10px;
}
#works .block ul.cat li,
#single .works article ul.cat li {
    background: #FFF;
    border: #007DB6 solid 1px;
    border-radius: 5px;
    color: #007DB6;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
}
#works .block .ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 0 5% 15px;
}
#works .block p.more {
    position: relative;
    color: #007DB6;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: right;
    text-indent: -0.1em;
    padding: 0 30px 0 0;
    margin: auto 5% 15px;
}
#works .block p.type,
#works .block ul.cat li,
#works .block .ttl {
    transition: 0.5s 0s;
}
#works .block:hover p.type,
#works .block:hover .ttl {
    color: #F8B62D;
}
#works .block:hover ul.cat li {
    background: #F8B62D;
    border: #F8B62D solid 1px;
    color: #FFF;
}

#news ul.archive {
}
#news ul.archive li.post {
    position: relative;
    border-bottom: #7EBDDA solid 1px;
    padding: 20px 10%;
}
#news ul.archive li.post:first-child {
    border-top: #7EBDDA solid 1px;
}
#news ul.archive li.post a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news ul.archive li.post div.info,
#single .news article div.info {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: inherit;
    margin: 0 0 5px;
}
#single .news article div.info {
    margin: 0 0 10px;
}
#news ul.archive li.post div.info p.date,
#single .news article div.info p.date {
    color: #007DB6;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 25px;
    margin: 0 15px 5px 0;
}
#news ul.archive li.post div.info ul.cat,
#single .news article div.info ul.cat {
    flex-wrap: wrap;
}
#news ul.archive li.post div.info ul.cat li,
#single .news article div.info ul.cat li {
    background: #E3E3E3;
    border-radius: 5px;
    color: #007DB6;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
}
#news ul.archive li.post .ttl {
    position: relative;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    padding: 0 50px 0 0;
}
#news ul.archive li.post div.info p.date,
#news ul.archive li.post div.info ul.cat li,
#news ul.archive li.post .ttl {
    transition: 0.5s 0s;
}
#news ul.archive li.post:hover div.info p.date,
#news ul.archive li.post:hover .ttl {
    color: #F8B62D;
}
#news ul.archive li.post:hover div.info ul.cat li {
    background: #F8B62D;
    color: #FFF;
}

#pagenation,
.pagenation {
    width: 100%;
}
#pagenation {
    margin: 50px 0 0;
}
#pagenation ul {
    display: flex;
    justify-content: center;
}
#pagenation ul li {
   font-size: calc( 16 / var(--root-font-size) * 1rem );
   margin: 0 10px!important;
}
#pagenation ul li .page-numbers {
    display: block;
    width: 40px;
    height: 40px;
    color: #007DB6;
    background: #FFF;
    border-radius: 5px;
    line-height: 36px;
    text-align: center;
    text-indent: 0.05em;
}
main#news div.flexWrap div.flexL.archive #pagenation ul li .page-numbers {
    background: #E4E4E4;
}
#pagenation ul li span.page-numbers.current {
    color: #FFF;
    background: #007DB6;
}
main#news div.flexWrap div.flexL.archive #pagenation ul li span.page-numbers.current {
    background: #F8B62D;
}
#pagenation ul li .prev.page-numbers,
#pagenation ul li .next.page-numbers {
    position: relative;
    background: none!important;
}
#pagenation ul li .prev.page-numbers .arrow,
#pagenation ul li .next.page-numbers .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    margin: auto;
    transition: 0.5s 0s;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after,
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    width: 7.5px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    transition: 0.5s 0s;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after {
    left: 0; transform-origin: 1px 50%;
}
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    right: 0;
    transform-origin: calc(100% - 1px) 50%;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after {
    left: 0;
}
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    right: 0;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::before {
    transform: rotate(45deg);
}
#pagenation ul li .prev.page-numbers .arrow::after,
#pagenation ul li .next.page-numbers .arrow::after {
    transform: rotate(-45deg);
}
.pagenation {
    display: flex;
    justify-content: center;
    margin: 50px 0 0;
}

@media screen and (max-width: 960px) {
main#single {
    background: #E5F2F8;
    padding: 90px 0 100px;
}
main#works div.flexWrap,
main#news div.flexWrap,
main#single div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}
main#single div.flexWrap {
    width: 90%;
}
main#works div.flexWrap div.flexL,
main#news div.flexWrap div.flexL {
    order: 2;
    width: 100%;
    padding: 0;
}
main#single div.flexWrap div.flexL {
    width: 100%;
    padding: 0 0 75px;
}
main#single div.flexWrap div.flexL article {
    background: #FFF;
    border-radius: 10px;
    line-height: 1.5;
    padding: 25px min(8vw, 30px) 50px;
    margin: 0 0 50px;
}
main#single div.flexWrap div.flexL article h1.ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 25px;
}

.content p {
    margin: 0 0 1.75em;
}
.content p.center {
    text-align: center;
}
.content a {
    text-decoration: underline;
}
.content a:hover {
    text-decoration: none;
}
.content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

.content .is-style-ttl_border_font16 {
    border-bottom: #7EBDDA solid 1px;
    color: #007DB6;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    padding: 15px 0;
    margin: 0 0 30px;
}
.content .is-style-ttl_dot_font24 {
    position: relative;
    color: #007DB6;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1.5;
    text-indent: 1em;
    padding: 0;
    margin: 0 0 25px;
}
.content .is-style-ttl_dot_font24::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: inherit;
    left: 0;
    width: 10px;
    height: 10px;
    background: #F8B62D;
    border-radius: 50%;
    margin: 0;
}
.content .is-style-font12 {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}
.content .is-style-font14 {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
.content .is-style-font16 {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
.content .is-style-font20 {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
.content .is-style-font24 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}
.content .is-style-font30 {
    font-size: calc( 30 / var(--root-font-size) * 1rem );
}
.content .is-style-font_bold {
    font-weight: 700;
}
.content .is-style-font_blue {
    color: #007DB6;
}
.content .is-style-font_yellow {
    color: #F8B62D;
}
.content .is-style-font_gray {
    color: #707070;
}

main#works div.flexWrap div.flexL.archive,
main#news div.flexWrap div.flexL.archive {
    margin: 50px 0 0;
}
main#works div.flexWrap div.flexR,
main#news div.flexWrap div.flexR,
main#single div.flexWrap div.flexR {
    order: 1;
    width: 300px;
    margin: 0 auto;
}
main#works div.flexWrap div.flexR.sideNav p.ttl,
main#news div.flexWrap div.flexR.sideNav p.ttl,
main#single div.flexWrap div.flexR.sideNav p.ttl {
    position: relative;
    color: #007DB6;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    line-height: 30px;
    padding: 0 0 0 13px;
}
main#works div.flexWrap div.flexR.sideNav p.ttl::before,
main#news div.flexWrap div.flexR.sideNav p.ttl::before,
main#single div.flexWrap div.flexR.sideNav p.ttl::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
main#works div.flexWrap div.flexR.sideNav select::-ms-expand,
main#news div.flexWrap div.flexR.sideNav select::-ms-expand,
main#single div.flexWrap div.flexR.sideNav select::-ms-expand {
	display: none;
}
main#works div.flexWrap div.flexR.sideNav select,
main#news div.flexWrap div.flexR.sideNav select,
main#single div.flexWrap div.flexR.sideNav select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 300px;
    height: 60px;
    background: #FFF url("../images/icon_arrow.svg") no-repeat right 20px center;
    background-size: 20px 20px;
    border: #007DB6 solid 2px;
    border-radius: 10px;
    color: #007DB6;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 56px;
    padding: 0 50px 0 25px;
    margin: 0;
}

#works .block {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFF;
    border-radius: 10px;
}
#works .block a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#works .block .img.zoom {
    overflow: hidden;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
#works .block .img.zoom img {
    transform: scale(1.1);
	transition: 0.5s 0s;
}
#works .block:hover .img.zoom img {
	transform: scale(1);
}
#works .block p.type {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    margin: 10px min(4vw, 15px);
}
#single .works article p.type {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    margin: 0 0 10px;
}
#works .block ul.cat {
    flex-wrap: wrap;
    margin: 0 min(4vw, 15px) 10px;
}
#single .works article ul.cat {
    flex-wrap: wrap;
    margin: 0 0 10px;
}
#works .block ul.cat li,
#single .works article ul.cat li {
    background: #FFF;
    border: #007DB6 solid 1px;
    border-radius: 5px;
    color: #007DB6;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
}
#works .block .ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 0 min(4vw, 15px) 15px;
}
#works .block p.more {
    position: relative;
    color: #007DB6;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: right;
    text-indent: -0.1em;
    padding: 0 30px 0 0;
    margin: auto 5% 15px;
}
#works .block p.type,
#works .block ul.cat li,
#works .block .ttl {
    transition: 0.5s 0s;
}
#works .block:hover p.type,
#works .block:hover .ttl {
    color: #F8B62D;
}
#works .block:hover ul.cat li {
    background: #F8B62D;
    border: #F8B62D solid 1px;
    color: #FFF;
}

#news ul.archive {
}
#news ul.archive li.post {
    position: relative;
    border-bottom: #7EBDDA solid 1px;
    padding: 20px 10px;
}
#news ul.archive li.post:first-child {
    border-top: #7EBDDA solid 1px;
}
#news ul.archive li.post a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#news ul.archive li.post div.info,
#single .news article div.info {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: inherit;
    margin: 0 0 5px;
}
#single .news article div.info {
    margin: 0 0 10px;
}
#news ul.archive li.post div.info p.date,
#single .news article div.info p.date {
    color: #007DB6;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 25px;
    margin: 0 15px 5px 0;
}
#news ul.archive li.post div.info ul.cat,
#single .news article div.info ul.cat {
    flex-wrap: wrap;
}
#news ul.archive li.post div.info ul.cat li,
#single .news article div.info ul.cat li {
    background: #E3E3E3;
    border-radius: 5px;
    color: #007DB6;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 25px;
    padding: 0 10px;
    margin: 0 5px 5px 0;
}
#news ul.archive li.post .ttl {
    position: relative;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    padding: 0 50px 0 0;
}
#news ul.archive li.post div.info p.date,
#news ul.archive li.post div.info ul.cat li,
#news ul.archive li.post .ttl {
    transition: 0.5s 0s;
}
#news ul.archive li.post:hover div.info p.date,
#news ul.archive li.post:hover .ttl {
    color: #F8B62D;
}
#news ul.archive li.post:hover div.info ul.cat li {
    background: #F8B62D;
    color: #FFF;
}

#pagenation,
.pagenation {
    width: 100%;
}
#pagenation {
    margin: 50px 0 0;
}
#pagenation ul {
    display: flex;
    justify-content: center;
}
#pagenation ul li {
   font-size: calc( 16 / var(--root-font-size) * 1rem );
   margin: 0 5px!important;
}
#pagenation ul li .page-numbers {
    display: block;
    width: 40px;
    height: 40px;
    color: #007DB6;
    background: #FFF;
    border-radius: 5px;
    line-height: 36px;
    text-align: center;
    text-indent: 0.05em;
}
main#news div.flexWrap div.flexL.archive #pagenation ul li .page-numbers {
    background: #E4E4E4;
}
#pagenation ul li span.page-numbers.current {
    color: #FFF;
    background: #007DB6;
}
main#news div.flexWrap div.flexL.archive #pagenation ul li span.page-numbers.current {
    background: #F8B62D;
}
#pagenation ul li .prev.page-numbers,
#pagenation ul li .next.page-numbers {
    position: relative;
    background: none!important;
}
#pagenation ul li .prev.page-numbers .arrow,
#pagenation ul li .next.page-numbers .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    margin: auto;
    transition: 0.5s 0s;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after,
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    width: 7.5px;
    height: 2px;
    background: #007DB6;
    border-radius: 9999px;
    transition: 0.5s 0s;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after {
    left: 0; transform-origin: 1px 50%;
}
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    right: 0;
    transform-origin: calc(100% - 1px) 50%;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .prev.page-numbers .arrow::after {
    left: 0;
}
#pagenation ul li .next.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::after {
    right: 0;
}
#pagenation ul li .prev.page-numbers .arrow::before,
#pagenation ul li .next.page-numbers .arrow::before {
    transform: rotate(45deg);
}
#pagenation ul li .prev.page-numbers .arrow::after,
#pagenation ul li .next.page-numbers .arrow::after {
    transform: rotate(-45deg);
}
.pagenation {
    display: flex;
    justify-content: center;
    margin: 50px 0 0;
}
}

/*----- other -----*/
main#other div.txtBlock {
    padding: 0 0 150px;
}
main#other div.txtBlock div.contact {
    width: 90%;
    max-width: 600px;
    border: #007DB6 solid 1px;
    border-radius: 5px;
	padding: 25px 0;
	margin: 50px auto 0;
}
main#other div.txtBlock div.contact p {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
main#other div.txtBlock div.contact p.flexL {
    align-content: center;
    width: 30%;
    color: #007DB6;
    border-right: #007DB6 solid 1px;
}
main#other div.txtBlock div.contact p.flexR {
    width: 70%;
    text-align: inherit;
    text-indent: inherit;
    padding: 15px 5%;
}

@media screen and (max-width: 960px) {
main#other div.txtBlock {
    padding: 0 0 100px;
}
main#other div.txtBlock.center {
    width: 85%;
    padding: 15px 0 100px;
    margin: 0 auto;
}
main#other div.txtBlock.center p {
    text-align: inherit;
    text-indent: inherit;
}
main#other div.txtBlock div.contact {
    width: 100%;
    max-width: 600px;
    border: #007DB6 solid 1px;
    border-radius: 5px;
	padding: 15px 0;
	margin: 25px auto 50px;
}
main#other div.txtBlock div.contact.flexWrap {
    flex-wrap: wrap;
}
main#other div.txtBlock div.contact p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
main#other div.txtBlock div.contact p.flexL {
    align-content: center;
    width: 100%;
    color: #007DB6;
    border-right: none;
    padding: 0 min(4vw, 15px) 10px;
}
main#other div.txtBlock div.contact p.flexR {
    width: 100%;
    text-align: inherit;
    text-indent: inherit;
    padding: 0 min(4vw, 15px);
}
}

/*----- footer -----*/
footer {
    width: 100%;
    background: #007DB6;
    color: #FFF;
    padding: 75px 0;
}
footer div.flexWrap {
    align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
footer div.flexWrap div.flexL {
    width: calc(100% - 315px);
}
footer div.flexWrap div.flexL nav {
}
footer div.flexWrap div.flexL nav ul {
    padding: 0 min(3vw, 45px) 0 0;
}
footer div.flexWrap div.flexL nav ul li {
    line-height: 1.5;
}
footer div.flexWrap div.flexL nav ul li a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav ul li a:hover {
    color: #F8B62D;
}
footer div.flexWrap div.flexL nav ul li .ttl {
    width: 160px;
    border-bottom: #FFF solid 1px;
    padding: 0 10px 10px;
    margin: 20px 0;
}
footer div.flexWrap div.flexL nav ul li .ttl p {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
footer div.flexWrap div.flexL nav ul li .ttl p.en {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexL nav ul li ul.subNav li {
    position: relative;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    padding: 0 0 0 18px;
    margin: 15px 0;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
footer div.flexWrap div.flexR {
    width: 315px;
}
footer div.flexWrap div.flexR div.logo {
    margin: 0 0 15px;
}
footer div.flexWrap div.flexR p {
    line-height: 1.5;
}
footer div.flexWrap div.flexR p a {
    color: #FFF;
}

footer .copyright {
    text-align: right;
    padding: 50px 0 0;
}
footer .copyright small {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    text-indent: -0.1em;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: #007DB6;
    color: #FFF;
    padding: 50px 0 25px;
}
footer div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
footer div.flexWrap div.flexL {
    width: 85%;
    max-width: 315px;
    margin: 0 min(7.5%, 30px);
}
footer div.flexWrap div.flexL nav,
#g-nav div.flexWrap {
    justify-content: space-between;
    margin: 0 0 5px;
}
footer div.flexWrap div.flexL nav ul,
#g-nav ul {
    padding: 0;
}
footer div.flexWrap div.flexL nav ul li,
#g-nav ul li {
    line-height: 1.5;
}
footer div.flexWrap div.flexL nav ul li a,
#g-nav ul li a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav ul li a:hover,
#g-nav ul li a:hover {
    color: #F8B62D;
}
footer div.flexWrap div.flexL nav ul li .ttl,
#g-nav ul li .ttl {
    width: 40vw;
    max-width: 150px;
    border-bottom: #FFF solid 1px;
    padding: 0 10px 10px;
    margin: 20px 0;
}
footer div.flexWrap div.flexL nav ul li .ttl p,
#g-nav ul li .ttl p {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
}
footer div.flexWrap div.flexL nav ul li .ttl p.en,
#g-nav ul li .ttl p.en {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexL nav ul li ul.subNav li,
#g-nav ul li ul.subNav li {
    position: relative;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    padding: 0 0 0 18px;
    margin: 15px 0;
}
footer div.flexWrap div.flexL nav ul li ul.subNav li::before,
#g-nav ul li ul.subNav li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #F8B62D;
    border-radius: 50%;
    margin: auto 0;
}
footer div.flexWrap div.flexR {
    width: 85%;
    max-width: 315px;
    margin: 0 min(7.5%, 30px);
}
footer div.flexWrap div.flexR div.logo {
    margin: 0 0 15px;
}
footer div.flexWrap div.flexR p {
    line-height: 1.5;
}
footer div.flexWrap div.flexR p a {
    color: #FFF;
}

footer .copyright {
    text-align: right;
    padding: 50px 0 0;
}
footer .copyright small {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    text-indent: -0.1em;
}
}

/*----- page_top -----*/
/*リンクの形状*/
/*リンクを右下に固定*/
#page_top {
    position: fixed;
    right: 5%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #E3E3E3;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(95px);
    cursor: pointer;
}
/*上に上がる動き*/
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(95px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(95px);
  }
}

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

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: -125%;
    right: 0;
    width: 100%;
    height: 100vh;/*ナビの高さ*/
    max-height: inherit;
    background: #007DB6;
    color: #FFF;
    transition: all 0.5s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    top: 0;
    z-index: 99998;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav div.inner {
    width: 85vw;
    max-width: 315px;
    padding: 100px 0;
    margin: 0 auto;
    opacity: 0;/*はじめは透過0*/
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}

/*ボタンの設定*/
.openbtn {
    position: fixed;
    z-index: 99999;/*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #007DB6;
    border-radius: 5px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;
    appearance: none;
    transition: all 0.5s;
}
.openbtn.active {
    background: #F8B62D;
}
.openbtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 25px;
    height: 3px;
    background: #FFF;
    border-radius: 1.5px;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active span {
}
.openbtn span:nth-of-type(1) {
    top: 0;
    bottom: 15px;
    margin: auto;
    animation: menu-bar1 0.5s forwards;
}
.openbtn span:nth-of-type(2) {
    top: 15px;
    bottom: 0;
    margin: auto;
    animation: menu-bar2 0.5s forwards;
}
.openbtn span:nth-of-type(3) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.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;
}
.openbtn.active span:nth-of-type(3) {
    display: none;
}

#scrollNav {
    position: fixed;
    left: 0;
    bottom: -50px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background: #FFF;
}
#scrollNav div {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0 5vw;
}
#scrollNav div p {
    color: #EFE3DA;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-align: center;
    text-indent: 0.05em;
}
#scrollNav div p:first-of-type {
    font-size: calc( 15 / var(--root-font-size) * 1rem );
    padding: 0 5px 0 0;
}
#scrollNav div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scroll_bar {
    0% {top: 30px;}
    100% {top: 130px;}
}
@keyframes scroll_barhide {
    0% {opacity: 0;}
    10% {opacity: 1;}
    50% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0;}
 }
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}