@charset "UTF-8";
/*********************
ELEMENTS
*********************/

html {
    font-size: 62.5%;
    height: 100%;
}

body,
input,
textarea {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: Medium;
    line-height: 1.5;
    color: #194075;
    position: relative;
}

input,
textarea {
    font-weight: normal;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
    position: relative;
}

/*********************
clearfix
*********************/

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
    display: table;
    content: " ";
}

.clearfix:after,
.container:after,
.row:after {
    clear: both;
}


/*********************
COLOR
*********************/

/* font-color */

.color-red {
    color: #e95283 !important;
}

.color-blue {
    color: #004077 !important;
}

.color-purple {
    color: #9370db !important;
}

.color-white {
    color: white !important;
}

.color-gold {
    color: #c89643 !important;
}

.color-yellow {
    color: yellow !important;
}

.color-green {
    color: #64b100 !important;
}

.marker {
    background: linear-gradient(transparent 50%, #ffff66 50%);
}

/* bg-color */

.bg-gray {
    background-color: #FAFAFA !important;
}

.bg-darkgray {
    background-color: #666 !important;
}

.bg-black {
    background-color: #222 !important;
}

.bg-white {
    background-color: white !important;
}

.bg-blue {
    background-color: #e9f5f5 !important;
}

.bg-paleblue {
    background-color: #f7fcfc !important;
}

.bg-darkblue {
    background-color: #00a6e4 !important;
}

.bg-yellow {
    background-color: yellow !important;
}

/*********************
A tag
*********************/

a {
    transition: .14s ease-out;
    color: #194075;
}

a.underline {
    text-decoration: underline !important;
}

a:hover {
    color: #c89643;
}

a.outlink::after {
    content: '';
    width: .8em;
    height: .8em;
    margin-left: 6px;
    display: inline-block;
    background: url(../images/icon-outlink.svg) no-repeat left center;
    background-size: contain;
}

#footer a.outlink::after {
    background: url(../images/icon-outlink-w.svg) no-repeat left center;
}


/*********************
BUTTON
*********************/

a.btn {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    font-size: .9em;
    text-align: center;
    display: inline-block;
    padding: 1.2em 2em;
    margin: 5px 0 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    color: #194075;
    background: white;
    border: 1px solid transparent;
    min-width: 20em;
}

a.btn.line {
    border: 1px solid #194075;
}

a.btn.line:hover {
    border: 1px solid #c89643;
}

a.btn.ar {
    padding: 1.2em 4em 1.2em 2em;
    text-align: left;
}

a.btn.box {
    border: 1px solid #194075;
    box-shadow: 2px 2px 0px #194075;
    display: block;
    width: fit-content;
}

a.btn.box:hover {
    border: 1px solid #c89643;
    color: #c89643;
    box-shadow: 2px 2px 0px #c89643;
}

a.btn.ar::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #194075;
    border-right: 1px solid #194075;
    position: absolute;
    top: calc(50% - 4px);
    right: 1em;
    transform: rotate(45deg);
}


a.btn.black {
    color: white;
    background: #194075;
}

a.btn.black:hover {
    color: white;
    background: #555;
}

a.btn.black.ar::after {
    border-top: 1px solid white;
    border-right: 1px solid white;
}


a.btn.full {
    width: 100%;
}

a.btn.small {
    padding: .3em 1.2em .4em;
    min-width: auto;
}

a.btn.bullet {
    padding: 9px 28px 9px 18px;
    min-width: auto;
    background: #194075;
    border: 2px solid transparent;
    color: white;
    border-radius: 20px;
    font-size: .8em;
    line-height: 1;
    position: relative;
}

a.btn.bullet::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    position: absolute;
    top: calc(50% - 3px);
    right: 14px;
    transform: rotate(45deg);
}

a.btn.bullet.large {
    min-width: 260px;
    padding: 14px 28px 14px 18px;
    border-radius: 30px;
    font-size: 1em;
}

a.btn.bullet:hover {
    background: white;
    border: 2px solid #194075;
    color: #194075;
}

a.btn.bullet:hover::after {
    border-top: 1px solid #194075;
    border-right: 1px solid #194075;
}

a.btn:hover {
    box-shadow: 0 0px 10px rgba(0, 0, 0, .2);
}

/* btn-circle */
.btn-circle {
    position: relative;
    background: #194075;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    margin: 0;
    padding: 0;
}

.btn-circle.min {
    width: 40px;
    height: 40px;
}

.btn-circle::before {
    position: absolute;
    content: "VIEW";
    display: block;
    font-size: 12px;
    top: calc(50% - 7px);
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
}

.btn-circle.min::before {
    content: none;
}

.btn-circle::after {
    position: absolute;
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
}

.btn-circle.min::after {
    top: 50%;
}

.btn-circle:hover {
    background: #c89643;
}

@media screen and (max-width: 880px) {
    .banner-thumb .btn-circle.min {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 680px) {
    .btn-circle {
        width: 60px;
        height: 60px;
    }

    .btn-circle::before {
        font-size: 10px;
        top: calc(50% - 5px);
    }

    .btn-circle::after {
        width: 5px;
        height: 5px;
        top: calc(50% + 8px);
        border-top: 1px solid white;
        border-right: 1px solid white;
    }

    .banner-thumb .btn-circle.min {
        width: 20px;
        height: 20px;
    }
}

/* btn-shadow */
a.shadow img {
    box-shadow: 0 5px 20px rgba(25, 64, 117, .1);
    transition: 0.3s;
}

a.shadow:hover img {
    box-shadow: 0 1px 10px rgba(25, 64, 117, .3);
}

@media screen and (max-width: 680px) {
    a.btn {
        min-width: auto;
    }
}

@media screen and (max-width: 480px) {
    a.btn {
        display: block;
        width: 100%;
        margin: 5px auto 10px;
        padding: 12px;
    }

    a.btn.bullet {
        width: fit-content;
        margin-right: inherit;
        margin-left: inherit;
    }

    .align-center a.btn.bullet {
        margin-right: auto;
        margin-left: auto;
    }

    a.btn.box {
        width: 100%;
    }
}

/*********************
TITLE
*********************/

h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

h2.title {
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.4;
    font-size: 1.9em;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

h3.title.circle {
    position: relative;
    color: #194075;
    font-size: 22px;
    margin: 0 0 1em 0;
    padding: 0 0 0 1.4em;
}

h3.title.circle::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.2em;
    width: 1em;
    height: 1em;
    margin: auto;
    border: 4px solid #CCC;
    border-radius: 50%;
    box-sizing: border-box;
}

h3.title.border {
    border-bottom: 1px solid #EEE;
    margin: 0 0 1.5em;
    padding-bottom: 10px;
}

.title-layer-wrapper {
    text-align: center;
}

.title-layer-wrapper .en {
    font-family: 'en-font';
    font-size: 4.4em;
    color: #e9f5f5;
    line-height: 1;
}

.title-layer-wrapper h3 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 2.2em;
    margin: -.8em 0 0;
    margin-left: 2px;
    padding: 0;
    font-weight: bold;
    letter-spacing: 2px;
}

.title.deco {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.title.deco::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #194075;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 20px);
}

.title span {
    font-size: 14px;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    position: relative;
}

h4.title.mincho {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.6em;
    text-align: center;
    font-weight: bold;
}

h4.title.border {
    border-bottom: 2px solid #f9f4e9;
    margin: 0 0 .6em;
    padding-bottom: .2em;
}

h4.title.circle {
    padding-left: 20px;
}

h4.title.circle::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 3px solid #dae5e6;
    border-radius: 50%;
    box-sizing: border-box;
}

h4.border+p {
    margin-top: 0;
}

h5 {
    font-size: .9em;
    font-weight: bold;
    margin: 0 0 10px;
}

h5.title {
    border-left: 5px solid #dae5e6;
    padding-left: 10px;
}

hr.hr-sp {
    display: none;
}

@media screen and (min-width: 991px) {
    body {
        font-size: 1.5em;
    }

    section.content-wrapper {
        padding: 80px 0;
    }
}

@media screen and (max-width: 990px) {
    html {
        height: 100%;
    }

    body {
        height: 100%;
        font-size: 1.5rem;
    }

    section.content-wrapper {
        padding: 60px 0;
    }

    h2.title {
        font-size: 20px;
    }

    h3.title-min {
        font-size: 14px;
    }

    h3.title.circle {
        font-size: 18px;
    }

    .title-layer-wrapper .en {
        font-size: 3em;
    }

    .title-layer-wrapper h3 {
        font-size: 1.6em;
        margin: -.8em 0 0;
        margin-left: 2px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 680px) {
    html {
        height: 100%;
    }

    body {
        height: 100%;
        font-size: 1.3rem;
    }

    section.content-wrapper {
        padding: 40px 0;
    }

    h2.title {
        font-size: 18px;
    }

    h3 {
        font-size: 18px;
    }

    h3.title.circle {
        font-size: 16px;
    }

    h3.title.circle::before {
        top: 0.3em;
        margin: auto;
        border: 3px solid #f0f0f0;
    }

    h3.title span {
        font-size: 11px;
    }

    .title-layer-wrapper .en {
        font-size: 2em;
    }

    .title-layer-wrapper h3 {
        font-size: 1.4em;
        margin: -.6em 0 0;
        margin-left: 0;
        letter-spacing: 0;
    }

    h4.title.mincho {
        font-size: 1.4em;
    }
}

/*********************
TABLE
*********************/

table.data {
    width: 100%;
    background: white;
}

table.data thead th {
    font-size: .9em;
    background: #6b8c9c;
    padding: .7em 1em;
    color: white;
    border-right: 1px solid #e0e0e0;
    text-align: center;
}

table.data thead th:last-child {
    border-right: none;
}

table.data tbody tr:last-child {
    border-bottom: none;
}

table.data tbody td {
    padding: 1em;
    border-right: 1px dashed #dae5e6;
    border-bottom: 1px solid #dae5e6;
}

table.data tbody th {
    font-weight: bold;
    font-size: .9em;
    padding: 1em 1em 1em 0;
    border-right: 1px dashed #dae5e6;
    border-bottom: 1px solid #6b8c9c;
    text-align: left;
}

table.data tbody th:first-of-type {
    border-top: 1px solid #194075;
}

table.data thead+tbody th:first-of-type {
    border-top: none;
}

table.data tbody tr:first-of-type {
    border-top: 1px solid #dae5e6;
}

table.data tbody td:last-child {
    border-right: none;
}

table.data tbody td {
    text-align: left;
}

table.data.center td {
    text-align: center;
}

table.data th.w25 {
    width: 25%;
}

table.data th.w40 {
    width: 40%;
}

tr.tate th,
tr.tate td {
    text-align: center;
}

tr.tate th span,
tr.tate td span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: pre;
    display: inline-block;
}

@media screen and (max-width: 680px) {

    table.data td,
    table.data th {
        text-align: left;
    }

    table.data.sp-row td,
    table.data.sp-row th {
        display: block;
        border: none;
    }

    table.data.sp-row th {
        background: #eef5f7;
        padding-left: 5px;
        padding-right: 5px;
        border-bottom: 1px dotted #194075;
        width: 100% !important;
    }
}

@media screen and (max-width: 1199px) {
    .table-scroll.lg {
        overflow-x: scroll;
        position: relative;
    }

    .table-scroll.lg table {
        width: 100%;
        white-space: nowrap;
    }

    .table-scroll.lg::before {
        content: "左右にスクロールできます ⇔";
        display: inline-block;
        font-size: 11px;
        background: #f3f7f7;
        padding: 2px 5px;
        margin-bottom: 7px;
    }
}

@media screen and (max-width: 991px) {
    .table-scroll.md {
        overflow-x: scroll;
        position: relative;
    }

    .table-scroll.md table {
        width: 100%;
        white-space: nowrap;
    }

    .table-scroll.md::before {
        content: "左右にスクロールできます ⇔";
        display: inline-block;
        font-size: 11px;
        background: #f3f7f7;
        padding: 2px 5px;
        margin-bottom: 7px;
    }
}

@media screen and (max-width: 580px) {
    .table-scroll {
        overflow-x: scroll;
        position: relative;
    }

    .table-scroll table {
        width: 100%;
        white-space: nowrap;
    }

    .table-scroll::before {
        content: "左右にスクロールできます ⇔";
        display: inline-block;
        font-size: 11px;
        background: #f3f7f7;
        padding: 2px 5px;
        margin-bottom: 7px;
    }
}

/*********************
DL
*********************/

dt {
    font-weight: bold;
}

dl,
dt,
dd {
    margin: 0;
}


/*********************
LIST
*********************/
ul,
ol,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.list {
    list-style: none;
}

ul.list.border li {
    border-bottom: 1px dotted #5186c0;
    width: fit-content;
    padding-left: 3px;
    padding-right: 3px;
}

ul.list>li {
    padding: .2em 0;
}

ul.odd li,
ol.odd li {
    padding: .8em .4em;
}

ul.odd li:nth-child(odd),
ol.odd li:nth-child(odd) {
    background-color: #f7fcfc;
    border-top: 1px solid #dae5e6;
    border-bottom: 1px solid #dae5e6;
}


ul.list-disc {
    margin-left: 1.5em;
}

ul.list-disc li {
    list-style: disc;
    list-style-position: outside;
    margin-bottom: .5em;
}

ul.list-disc li:last-child {
    margin-bottom: 0;
}

ol {
    counter-reset: item;
}

ol li {
    list-style: none;
    margin-bottom: 1em;
    position: relative;
    padding-left: 2em !important;
}

ol.odd li {
    list-style: none;
    margin-bottom: 1em;
    position: relative;
    padding-left: 2.4em !important;
}

ol li:before {
    position: absolute;
    left: .4em;
    counter-increment: item;
    content: counter(item)' )';
    display: inline-block;
    font-weight: bold;
}

ol li:last-child {
    margin-bottom: 0;
}

ul.list-disc-small {
    margin-left: 1em;
    font-size: 0.86em;
}

ul.list-disc-small li {
    list-style: circle;
    list-style-position: outside;
    margin-bottom: 1em;
}


/*********************
HR
*********************/
hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
}

hr.sep {
    margin: 60px auto;
    display: block;
    border-top: 1px solid #f3f7f7;
    position: relative;
}

.bg-secondary hr.sep {
    border-top: 1px solid #e7e0cf;
}

hr.sep::before,
hr.sep::after {
    position: absolute;
    top: -1px;
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #194075;
}

hr.sep::before {
    left: 0;
}

hr.sep::after {
    right: 0;
}

hr.sep.narrow {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    border-top: 1px solid #EEE;
}

hr.sep.simple::before,
hr.sep.simple::after {
    display: none;
}

hr.color {
    height: 1px;
    background: linear-gradient(to right, #d0e2b8, #cde3eb);
}

@media screen and (max-width: 680px) {
    hr.sep {
        margin: 40px 0;
    }
}

/*********************
FIGURE - IMG
*********************/
/* figure */
figure {
    margin: 0;
    padding: 0;
}

figcaption.caption-text {
    position: absolute;
    line-height: 1;
    font-size: .8em;
    padding: 4px 8px;
    background: rgba(255, 255, 255, .7);
    text-shadow: 2px 1px 5px #FFF;
}

figcaption.caption-text.top {
    top: 0;
}

figcaption.caption-text.right {
    right: 0;
}

figcaption.caption-text.bottom {
    bottom: 0;
}

figcaption.caption-text.left {
    left: 0;
}

/* img */
img {
    max-width: 100%;
    height: auto;
}

img.img100 {
    width: 100%;
}

img.circle {
    border-radius: 50%;
}


/*********************
form
*********************/

.form form,
form.form {
    padding: 40px;
    margin: 0;
    background: #f4f9f4;
    border-radius: 20px;
}

input[type="submit"],
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    appearance: none;
    box-shadow: none;
    outline: none;
    border: none;
    background: white;
}


input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    display: block;
    font-size: 16px;
    padding: 12px 15px;
    width: 100%;
    transition: 0.3s;
    border-radius: 3px;
    border: 1px solid #CCC;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    background: #f8f8f8;
    border: 1px solid #999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
    display: inline-block;
    width: 100%;
    height: 200px;
}

input::placeholder,
textarea::placeholder {
    color: #AAA;
}

.form form dl,
form.form dl {
    padding: 0;
    margin: 0 0 3em;
}

.form form dl.form-required dt,
form.form dl.form-required dt {
    line-height: 1;
    padding-bottom: 10px;
}

.form form dl.form-required dt:after,
form.form dl.form-required dt:after {
    content: "必須";
    display: inline-block;
    margin-left: 5px;
    font-size: 10px;
    background: #cd5c5c;
    color: white;
    line-height: 1;
    padding: 3px 5px;
    border-radius: 3px;
}

.form form .label-box,
form.form .label-box {
    display: block;
    background: white;
    border-radius: 5px;
    padding: .5em 1em;
}

.form form .label-box label,
form.form .label-box label {
    width: 100%;
}

/* checkbox */

.form form input[type="checkbox"],
form.form input[type="checkbox"] {
    display: none;
}

.form form input[type="checkbox"]+label,
form.form input[type="checkbox"]+label {
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
}

.form form input[type="checkbox"]+label::before,
form.form input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid #999;
    background: #FFF;
    transition: .2s ease-out;
}

.form form input[type="checkbox"]:checked+label::before,
form.form input[type="checkbox"]:checked+label::before {
    background: #194075;
    border: none;
}

.form form input[type="checkbox"]:checked+label::after,
form.form input[type="checkbox"]:checked+label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: white;
}

input[type="submit"].submit-btn,
input[type="button"] {
    transition: .2s ease-out;
    background: white;
    color: #194075;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid #194075;
    padding: .8em 2em;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

input[type="submit"].submit-btn:disabled {
    background: #CCC;
    color: white;
    border: 2px solid #444;
    box-shadow: none;
}

input[type="submit"].submit-btn:enabled:hover {
    background: #194075;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    cursor: pointer;
}

input[type="button"] {
    background: #194075;
    color: white;
    border: none;
}

input[type="button"]:hover {
    background: #666;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    cursor: pointer;
}

@media screen and (max-width: 680px) {

    .form form,
    form.form {
        padding: 20px;
    }

    .form form dl,
    form.form dl {
        margin: 0 0 1em;
    }
}


/*********************
LINE-HEIGHT
*********************/

.lh0 {
    line-height: 0;
}

.lh18 {
    line-height: 1.8;
}

/*********************
TEXT
*********************/

em {
    font-style: normal;
    font-weight: bolder;
}

.en {
    font-family: 'en-font', sans-serif;
}

.jp {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "Yu Gothic", sans-serif;
}

.font-small {
    font-size: .85em;
}

.font-large {
    font-size: 1.3em;
}

.font-xlarge {
    font-size: 1.6em;
}

.font-xxlarge {
    font-size: 1.9em;
}

@media screen and (max-width: 767px) {
    .font-sm-normal {
        font-size: 1em !important;
    }

    .font-small {
        font-size: 11px;
    }

    .font-large {
        font-size: 16px;
    }

    .font-xlarge {
        font-size: 20px;
    }

    .font-xxlarge {
        font-size: 22px;
    }
}

.strong {
    font-weight: bold;
}

.font-mincho {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-en {
    font-family: 'font-en', sans-serif;
}

.font-thin {
    font-weight: 300;
}

/* box */

.box {
    padding: 4em 4em;
    background: #FAFAFA;
    width: 100%;
}

.box.thin {
    padding: 1.8em 2.4em;
}

.box.line {
    border: 1px solid #e0e0e0;
}

.box.line.blue {
    border: 1px solid #0065d4;
}

@media screen and (max-width: 991px) {
    .box {
        width: 100%;
    }
}

@media screen and (max-width: 565px) {
    .box {
        padding: 20px;
    }
}

/* design-style */
.style-round {
    border-radius: 7px;
}

.style-round.min {
    border-radius: 3px;
}

.style-border {
    border: 1px solid #194075;
}

.style-border.light {
    border: 1px solid #dae5e6;
}

.style-shadow {
    box-shadow: 1px 3px 15px rgba(0, 0, 0, .1);
}

.minimum-area {
    min-height: 550px;
}

.bg-secondary {
    background: #f9f4e9 !important;
}

.bg-secondary.blue {
    background: #e9f5f5 !important;
}

.height100 {
    height: 100%;
}

.box-height-wrapper {
    display: -wbkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*********************
HEADER
*********************/
#head-wrapper h1 img.logo {
    width: 100%;
}

#head-wrapper {
    position: relative;
}

@media screen and (min-width: 2000px) {
    #head-wrapper {
        width: 100%;
        max-width: 1940px;
        margin: 0 auto !important;
    }
}

@media screen and (min-width: 1000px) {

    #top-head {
        transition: .2s ease-in-out;
    }

    #top-head.is-fixed {
        position: sticky;
    }

    #head-wrapper {
        position: relative;
        font-size: 0;
        margin: 0 0 0 60px;
        height: 140px;
    }

    #head-wrapper h1 {
        position: absolute;
        width: 180px;
        top: 40px;
        left: 0;
        margin: 0;
        padding: 0;
        z-index: 5;
        display: block;
    }

    header#top-head {
        position: relative;
        padding: 0;
    }

    header#top-head.is-fixed {
        background: rgba(243, 247, 247, .9);
        z-index: 10;
        top: 0;
    }

    #head-wrapper h1 img.logo {
        padding: 0;
        margin: 0;
    }

    #nav-toggle,
    .sp-contact {
        display: none;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1499px) {
    #head-wrapper {
        margin: 0 0 0 30px;
    }

    #head-wrapper h1 {
        top: 20px;
        width: 160px;
    }
}

@media screen and (max-width: 999px) {

    #top-head {
        margin: 0;
        padding: 0;
        position: fixed;
        top: 0;
        width: 100%;
        height: auto;
        z-index: 100;
    }

    #head-wrapper {
        width: 100%;
        display: block;
        position: relative;
    }

    #head-wrapper h1 {
        line-height: 0;
        margin-top: 8px;
        margin-left: 15px;
        max-width: 120px;
    }

    #head-wrapper h1 img.logo {
        display: block;
    }

    /* Toggle Button */
    #nav-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        top: 18px;
        right: 18px;
    }

    #nav-toggle div {
        position: relative;
    }

    #nav-toggle span {
        display: block;
        position: absolute;
        background: #194075;
        height: 2px;
        width: 100%;
        left: 0;
        transition: .2s ease-in-out;
    }

    #nav-toggle {
        width: 22px;
        height: 20px;
        display: block;
    }

    #nav-toggle span:nth-child(1) {
        top: 0;
    }

    #nav-toggle span:nth-child(2) {
        top: 9px;
    }

    #nav-toggle span:nth-child(3) {
        top: 18px;
    }

    /* sp-contact */
    .sp-contact {
        display: flex;
        position: absolute;
        top: 12px;
        right: 52px;
    }

    .sp-contact a {
        display: block;
        background: #004077;
        color: white;
        font-weight: bold;
        font-size: 11px;
        text-decoration: none;
        padding: 7px 9px;
        margin-right: 5px;
        border-radius: 5px;
    }

    .sp-contact .reserve a {
        background: #6595af;
    }

    .sp-contact .reserve span.under {
        display: none;
    }

    /* open */
    body.open {
        overflow: hidden;
    }

    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        transform: rotate(-45deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        transform: rotate(45deg);
    }

    #head-wrapper {
        width: 100%;
        height: 54px;
        position: absolute;
        z-index: 999;
        background: white;
        top: 0;
        /*position: fixed;*/
        margin-top: 0;
    }

    #header,
    .head-inner {
        width: 100%;
        padding: 0;
    }

    main.main {
        padding-top: 56px;
    }
}

@media screen and (max-width: 380px) {
    .sp-contact {
        display: none;
    }
}

/*********************
NAVIGATION
*********************/

#head-global-nav>ul>li a {
    text-decoration: none;
    font-weight: bold;
    display: block;
    position: relative;
}

@media screen and (min-width: 1000px) {
    #head-global-nav {
        position: relative;
    }

    #head-global-nav>ul {
        display: flex;
        align-items: center;
        padding: 0;
    }

    #head-global-nav>ul.primary {
        width: fit-content;
        margin: 0 auto;
        padding-top: 90px;
        padding-right: 60px;
    }

    #head-global-nav>ul.secondary {
        position: absolute;
        top: 0;
        right: 0;
    }

    #head-global-nav>ul.primary li a,
    #head-global-nav>ul.primary li span {
        padding: 0 20px;
        font-size: 15px;
        vertical-align: middle;
    }

    #head-global-nav>ul.primary li span {
        color: #c3ced3;
        font-weight: bold;
    }

    #head-global-nav>ul.secondary .contact {
        background: none;
        padding: 0;
    }

    #head-global-nav>ul.secondary .contact a,
    #head-global-nav>ul.secondary .contact span.under {
        font-size: 15px;
        background: #194075;
        color: #FFF;
        padding: 27px 40px;
        height: 70px;
        line-height: 1;
        display: block;
        font-weight: bold;
        height: 100%;
    }

    #head-global-nav>ul.secondary .contact.reserve span.under {
        background: #c3ced3;
        position: relative;
    }

    /*#head-global-nav>ul.secondary .contact.reserve span.under::before {
        content: "coming soon";
        display: block;
        text-align: center;
        color: #6b8592;
        font-weight: bold;
        font-size: .7em;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }*/

    #head-global-nav>ul.secondary .contact.reserve a {
        background: #6595af;
    }

    #head-global-nav>ul.secondary .contact a:hover {
        background: #c89643;
        color: #FFF;
    }

    #head-global-nav>ul.secondary li.list {
        font-size: 14px;
        margin-right: 40px;
    }

    #head-global-nav>ul.secondary li.list a {
        position: relative;
        padding-left: 12px;
    }

    #head-global-nav>ul.secondary li.list a::before {
        position: absolute;
        left: 0;
        top: calc(50% - 2px);
        content: "";
        display: inline-block;
        width: 4px;
        height: 4px;
        background: #e9d5e8;
        border-radius: 50%;
    }

    #head-global-nav>ul.primary li a::after {
        left: calc(50% - 1em);
        width: 2em;
    }

    #page-home #head-global-nav>ul.primary li:nth-of-type(1) a::after,
    #page-concept #head-global-nav>ul.primary li:nth-of-type(2) a::after,
    #page-town #head-global-nav>ul.primary li:nth-of-type(3) a::after,
    #page-access #head-global-nav>ul.primary li:nth-of-type(4) a::after,
    #page-location #head-global-nav>ul.primary li:nth-of-type(5) a::after,
    #page-plan #head-global-nav>ul.primary li:nth-of-type(6) a::after,
    #page-section #head-global-nav>ul.primary li:nth-of-type(7) a::after,
    #page-structure #head-global-nav>ul.primary li:nth-of-type(8) a::after {
        content: "";
        display: block;
        position: absolute;
        left: calc(50% - 1.5em);
        bottom: -15px;
        width: 3em;
        height: 1px;
        background-color: #c89643;
    }

    #page-outline #head-global-nav>ul.secondary li:nth-of-type(1) a,
    #page-guide #head-global-nav>ul.secondary li:nth-of-type(2) a {
        color: #c89643;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1299px) {
    #head-global-nav>ul.primary li a {
        padding: 0 17px;
        font-size: 14px;
    }

    #head-global-nav>ul.secondary .contact a,
    #head-global-nav>ul.secondary .contact.reserve span.under {
        padding: 22px 40px;
        height: 60px;
    }
}

@media screen and (max-width: 999px) {
    #head-nav-wrapper {
        position: absolute;
        left: 0;
        top: -100vh;
        width: 100%;
        height: 100vh;
        z-index: 100;
        opacity: 0;
        overflow-y: auto;
        transition: all .3s ease-out;
    }

    .open #head-nav-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
        left: 0;
        top: 0;
        background: #e9f5f5;
        position: fixed;
        height: 100%;
        opacity: 1;
    }

    #head-global-nav {
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
    }

    #head-global-nav ul.primary li a,
    #head-global-nav ul.primary li span {
        position: relative;
        text-decoration: none;
        font-size: 16px;
        padding: 15px 0;
        margin: 0;
        display: block;
        border-bottom: 1px solid #c4e1e1;
    }

    #head-global-nav ul.primary li a::after {
        display: block;
        content: "";
        width: 7px;
        height: 7px;
        position: absolute;
        top: calc(50% - 3px);
        right: 10px;
        border-top: 2px solid #194075;
        border-right: 2px solid #194075;
        transform: rotate(45deg);
    }

    #head-global-nav ul.primary li span {
        color: #c3ced3;
        font-weight: bold;
    }

    #head-global-nav ul.secondary {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #head-global-nav ul.secondary li {
        width: 49%;
        text-align: center;
    }

    #head-global-nav ul.secondary li.list a {
        text-decoration: none;
        font-size: 12x;
        padding: 10px 20px;
        margin-bottom: 3px;
        color: #194075;
        background: white;
        border-radius: 3px;
        display: block;
        box-sizing: border-box;
    }

    #head-global-nav ul.secondary li.contact {
        margin-top: 10px;
    }

    #head-global-nav ul.secondary li.contact a,
    #head-global-nav ul.secondary li.contact span.under {
        background: #194075;
        color: white;
        font-size: 14px;
        padding: 15px 20px;
        border-radius: 3px;
        display: block;
        box-sizing: border-box;
        position: relative;
    }

    #head-global-nav>ul.secondary .contact.reserve span.under {
        background: #c3ced3;
        position: relative;
    }

    /*#head-global-nav>ul.secondary .contact.reserve span.under::before {
        content: "coming soon";
        display: block;
        text-align: center;
        color: #6b8592;
        font-weight: bold;
        font-size: .7em;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }*/

    #head-global-nav ul.secondary li.contact.reserve a {
        background: #6595af;
    }
}

@media screen and (max-width: 480px) {

    .open #head-nav-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #head-global-nav ul.primary li a,
    #head-global-nav ul.primary li span {
        font-size: 14px;
        padding: 10px 0;
    }

    #head-global-nav ul.secondary li.list a {
        font-size: 12px;
        padding: 8px 0;
    }
}


/*********************
BOTTOM-COMMON
*********************/

#section-bottom-common {
    position: relative;
    font-size: 1.5rem;
    background: #e9f5f5 url(../images/sky-bg.jpg) no-repeat center center;
    background-size: cover;
}

#section-bottom-common article,
#section-bottom-common .inner,
#section-bottom-common .primary .link-wrapper,
#section-bottom-common .primary ul,
#section-bottom-common .secondary ul {
    display: flex;
}

#section-bottom-common a {
    text-decoration: none;
    font-weight: bold;
}

#section-bottom-common .inner {
    width: 80%;
}

#section-bottom-common h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 20%;
    font-size: 1.3em;
    align-self: center;
}

#section-bottom-common h2 span {
    display: block;
    padding: 1em 0;
    border-top: 1px solid #194075;
    border-bottom: 1px solid #194075;
}

#section-bottom-common .primary,
#section-bottom-common .secondary {
    width: 45%;
    margin-left: 5%;
}

/* location-info-banner */
#section-bottom-common .location-info {
    position: relative;
    margin-bottom: 20px;
    padding: 5px;
    background: white;
    width: 100%;
}

#section-bottom-common .location-info a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgba(25, 64, 117, .1);
    transition: 0.3s;
}

#section-bottom-common .location-info:hover a::before {
    box-shadow: 0 1px 10px rgba(25, 64, 117, .3);
}

#section-bottom-common .location-info a {
    display: block;
    border: 1px solid #e9d5e8;
    padding: 20px 10px;
    text-align: center;
}

/* bottom-links */
#section-bottom-common .primary .link-wrapper,
#section-bottom-common .primary ul {
    align-items: center;
}

#section-bottom-common .primary .banner {
    max-width: 225px;
}

#section-bottom-common .primary .link {
    margin-left: 20px;
}

#section-bottom-common .primary .link a {
    position: relative;
    padding-left: 12px;
    font-size: 14px;
}

#section-bottom-common .primary .link a::before {
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #c89643;
    border-radius: 50%;
}

/* contact */
.contact-btns {
    display: flex;
}

.contact-btns li {
    width: calc(50% - 10px);
}

.contact-btns li.request {
    margin-right: 20px;
}

.contact-btns li a {
    display: block;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(25, 64, 117, .2);
    color: white;
    width: 100%;
    text-decoration: none;
    font-weight: bold;
}

.contact-btns li.request a {
    background: #194075;
}

.contact-btns li.reserve a {
    background: #6595af;
}

.contact-btns li.reserve span.under {
    display: block;
    padding: 20px;
    text-align: center;
    color: white;
    width: 100%;
    font-weight: bold;
    background: #c3ced3;
    position: relative;
}

/*.contact-btns li.reserve span.under::before {
    content: "coming soon";
    display: block;
    color: #6b8592;
    font-weight: bold;
    font-size: .8em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-10%) translateX(-50%);
    -webkit- transform: translateY(-10%) translateX(-50%);
}*/
.contact-btns li a:hover {
    box-shadow: 0 1px 10px rgba(25, 64, 117, .4);
    background: #c89643;
}

@media all and (max-width: 580px) {
    .contact-btns li {
        width: calc(50% - 5px);
    }

    .contact-btns li.request {
        margin-right: 10px;
    }

    .contact-btns li a,
    .contact-btns li.reserve span.under {
        padding: 15px;
        height: 100%;
    }

    .contact-btns li.reserve span.under::before {
        bottom: 50%;
        left: 50%;
        transform: translateY(0) translateX(-50%);
        -webkit- transform: translateY(0) translateX(-50%);
    }
}

/* call-wrapper */
.call-wrapper {
    display: flex;
    background: rgba(255, 255, 255, .4);
    border-radius: 3px;
    margin-top: 20px;
    padding: 20px;
    font-weight: bold;
}

.call-wrapper .title {
    text-align: center;
    min-width: 10em;
    font-size: .9em
}

.call-wrapper figure {
    max-width: 250px;
    margin-left: 20px;
}

.call-wrapper figure img {
    width: 100%;
}

.call-wrapper figcaption {
    margin-top: 5px;
    font-size: 12px;
}

@media all and (max-width: 1280px) {

    #section-bottom-common h2 {
        font-size: 1.2em;
        align-self: flex-start;
    }

    #section-bottom-common h2 {
        width: 300px;
        margin-right: 40px;
    }

    #section-bottom-common .inner {
        width: calc(100% - 300px);
        flex-direction: column;
    }

    #section-bottom-common .primary,
    #section-bottom-common .secondary {
        width: 100%;
        margin-left: 0;
    }

    #section-bottom-common .primary {
        margin-bottom: 20px;
    }

    #section-bottom-common .secondary {
        background: rgba(255, 255, 255, .2);
        border: 1px solid #bde7ff;
        border-radius: 3px;
        padding: 20px;
    }
}

@media all and (max-width: 880px) {
    #section-bottom-common article {
        flex-direction: column;
    }

    #section-bottom-common h2 {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }

    #section-bottom-common h2 br {
        display: none;
    }

    #section-bottom-common h2 span {
        color: white;
        border-top: 1px dotted #FFF;
        border-bottom: 1px dotted #FFF;
    }

    #section-bottom-common .inner {
        width: 100%;
    }
}

@media all and (max-width: 580px) {

    #section-bottom-common {
        font-size: .9em;
    }

    #section-bottom-common .location-info {
        margin-bottom: 10px;
    }

    #section-bottom-common .primary .link-wrapper {
        flex-direction: column-reverse;
    }

    #section-bottom-common .primary ul {
        width: 100%;
        margin-bottom: 20px;
    }

    #section-bottom-common .primary ul .link {
        width: 50%;
        margin: 0;
    }

    #section-bottom-common .primary ul .link a {
        background: white;
        padding: 7px 10px 7px 20px;
        display: block;
        font-size: 11px;
    }

    #section-bottom-common .primary ul .link a::before {
        margin-left: 10px;
    }

    #section-bottom-common .primary ul .link:first-of-type {
        margin-right: 10px;
    }

    #section-bottom-common .secondary {
        padding: 10px;
    }

    .call-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .call-wrapper .title {
        width: 100%;
        min-width: inherit;
        margin-bottom: 5px;
    }

    .call-wrapper .title br {
        display: none;
    }

    .call-wrapper figure {
        margin-left: 0;
    }
}

/* to_top */

#pageTop {
    position: fixed;
    right: 20px;
    bottom: 58px;
    width: 58px;
    height: 58px;
    text-align: center;
    z-index: 10;
    margin: 0;
}

#pageTop a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #194075;
}

#pageTop a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #194075;
    border-right: 2px solid #194075;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 5px);
    transform: rotate(-45deg);
}

@media all and (max-width: 780px) {
    #pageTop {
        width: 30px;
        height: 30px;
        right: 10px;
        bottom: 30px;
    }

    #pageTop a {
        padding-top: 10px;
        border: none;
        border-radius: 50%;
        background: #222;
    }

    #pageTop a::after {
        width: 7px;
        height: 7px;
        top: calc(50% - 3px);
        right: calc(50% - 4px);
        border-top: 2px solid #FFF;
        border-right: 2px solid #FFF;
    }
}


/*********************
PAGE-TITLE
*********************/
#page-title article.content-wrapper {
    padding: 4em 1.5em;
    background: #e9f5f5;
    text-align: center;
}

#page-title article.content-wrapper .title-en {
    margin-bottom: 0;
}


@media screen and (max-width: 1099px) {
    #page-title article.content-wrapper h2.title {
        margin-bottom: 2px;
    }

    #page-title article.content-wrapper .title-en {
        font-size: 10px;
    }

    #page-title article.content-wrapper {
        padding: 1.5em;
    }
}

/*********************
BREADCRUMBS
*********************/

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    font-size: .8em;
    margin-top: 10px;
}

.breadcrumbs ul li {
    position: relative;
    margin-right: 12px;
    padding-right: 12px;
}

.breadcrumbs ul li::after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - .2em);
    right: 0;
    border-top: 1px solid #194075;
    border-right: 1px solid #194075;
    transform: rotate(45deg);
}

.breadcrumbs ul li:last-of-type {
    font-weight: bold;
}

.breadcrumbs ul li:last-of-type:after {
    display: none;
}


/*********************
CONTENTS
*********************/
.title-en,
.title-jp {
    line-height: 1;
    font-size: .8em;
    padding: .5em 1.2em;
    border: 1px solid #004077;
    font-weight: bold;
    letter-spacing: 2px;
    padding-left: calc(1.2em + 2px);
    display: inline-block;
    margin-bottom: 10px;
}

.title-en {
    font-family: en-font;
}

.title-en.white,
.title-jp.white {
    border: 1px solid #FFF;
    color: white;
}

/* banner-thumb */

.banner-thumb {
    position: relative;
    background: white;
    border: 1px solid #004077;
    align-items: center;
    display: flex;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    transition: .2s;
}

.banner-thumb:hover {
    border: 1px solid #c89643;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .2);
}

.banner-thumb .img img {
    width: 150px;
    height: 120px;
    object-fit: cover;
}

.banner-thumb .body {
    width: calc(100% - 250px);
    margin-left: 20px;
}

.banner-thumb .btn-circle.min {
    width: 40px;
    margin: 0 20px;
    transition: .3s;
}

.banner-thumb a::before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    z-index: 2;
}

.banner-thumb a:hover+.btn-circle {
    background: #c89643;
}

@media all and (max-width: 880px) {
    .banner-thumb .img img {
        width: 100px;
        height: 100px;
    }

    .banner-thumb .body {
        width: calc(100% - 150px);
        margin-left: 10px;
        font-size: .9em;
    }

    .banner-thumb .btn-circle.min {
        width: 30px;
        margin: 0 10px;
    }
}

@media all and (max-width: 680px) {
    .banner-thumb .body {
        width: calc(100% - 140px);
    }

    .banner-thumb .btn-circle.min {
        width: 20px;
    }
}