@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline;
            text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: .35em .75em .625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* --------------------
 Styles
-------------------- */
html {
    font-size: 62.5%;
}

@font-face {
    font-family: YuGothicMedium;
    src: local(Yu Gothic Medium);
}

body {
    color: #000000;
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", YuGothicMedium, "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
}

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

a {
    color: #000000;
    text-decoration: none;
}

a:hover, a:focus {
    color: #000000;
    text-decoration: none;
}

img {
    height: auto;
    max-width: 100%;
    -webkit-user-drag: none;
            user-drag: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
}

p {
    word-wrap: break-word;
}

header, footer, main, nav, section {
    display: block;
}

button {
    cursor: pointer;
}

picture, figure, figcaption {
    display: block;
    margin: 0;
}

address {
    font-style: normal;
}

[tabindex="-1"]:focus {
    outline: 0;
}

/* --------------------
 Utils
-------------------- */
@media (max-width: 479px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1239px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1240px) {
    .hidden-lg {
        display: none !important;
    }
}

/* --------------------
 Layout
-------------------- */
.layout {
    animation: fadeIn .3s linear .1s;
    animation-fill-mode: backwards;
    opacity: 1;
}

/* --------------------
 Animation
-------------------- */
@keyframes fadeIn {
    0% {
        opacity: .01;
    }
    100% {
        opacity: 1;
    }
}

/* --------------------
 Header
-------------------- */
.header {
    padding: 0 15px;
}

@media (min-width: 768px) {
    .header {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1240px) {
    .header {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.header-container {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 50px;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 768px) {
    .header-container {
        height: 70px;
    }
}

.header__logo {
    font-size: 1.0rem;
    margin: 0;
    padding: 0;
    width: 140px;
}

@media (min-width: 768px) {
    .header__logo {
        width: auto;
    }
}

.header__logo__link {
    transition: opacity .35s cubic-bezier(.645, .045, .355, 1);
}

.header__logo__link:focus {
    opacity: .75;
}

@media (hover: hover) and (pointer: fine) {
    .header__logo__link:hover {
        opacity: .75;
    }
}


.header__menu__catch{
	font-size: 18px;
	font-weight: 600;
	padding-right: 10px;
	color: #1c5091;
}

@media (max-width: 991px) {
    .header__menu__catch {
        display: none;
    }
}

.header__menu {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.header__menu__item {
    margin: 0 8px 0 0;
}

@media (min-width: 768px) {
    .header__menu__item {
        margin-right: 15px;
    }
}

.header__menu__item:last-child {
    margin-right: 0;
}

.header__menu__item__link {
    display: flex;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    transition: opacity .35s cubic-bezier(.645, .045, .355, 1);
    white-space: nowrap;
	gap: 0 5px; 
}

.header__menu__item__link:focus {
    opacity: .75;
}

@media (hover: hover) and (pointer: fine) {
    .header__menu__item__link:hover {
        opacity: .75;
    }
}

@media (min-width: 768px) {
    .header__menu__item__link {
        font-size: 2.8rem;
        letter-spacing: .1em;
    }
}

@media (min-width: 1240px) {
    .header__menu__item__link {
        font-size: 3.0rem;
    }
}

.header__menu__item__link img, .header__menu__item__link span {
    vertical-align: middle;
}

.header__menu__item__link img + span {
    margin-left: 5px;
}

@media (min-width: 768px) {
    .header__menu__item__link img + span {
        margin-left: 10px;
    }
}

@media (max-width: 1239px) {
    .header__menu__item__link img {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .header__menu__item__link img {
        width: 24px;
    }
}

.header__menu__item p{
	font-size: 1.0rem;
	font-weight: 600;
	text-align: right;
	margin: 0;
}

/* --------------------
 Footer
-------------------- */
.footer {
    padding: 30px 0;
}

.footer-container {
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 1140px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.footer__logo {
    margin: 0 0 30px;
    text-align: center;
}

@media (max-width: 1239px) {
    .footer__logo img {
        height: 69px;
        width: auto;
    }
}

@media (max-width: 767px) {
    .footer__logo img {
        height: 39px;
    }
}

.footer__copyright {
    display: block;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15em;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__copyright {
        font-size: 1.4rem;
    }
}

@media (min-width: 992px) {
    .footer__copyright {
        font-size: 1.6rem;
    }
}
