@charset "utf-8";

/*-----------------------------フォント*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/*-----------------------------リセットCSS*/
html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
    overflow-x: hidden;
}

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

/* Remove default padding */

ul[class],
ol[class] {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 100%;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul[class],
ol[class] {
	list-style: none;
    padding: 0;
    margin: 0;
}

ul,
ol {
	list-style: none;
    padding: 0;
    margin: 0;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	display: block;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin: 0;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

/* Remove all animations and transitions for people that prefer not to see them */


img {
	height: auto;
}

picture {
    display: block;
}

address,
em {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="search"],
input[type="submit"],
input[type="button"] {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="search"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: normal;
}

/*-----------------------------初期値CSS*/
body {
    font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.8;
    position: relative;
    background: #fff;
    color: #333333;
    overflow-x: hidden;
}

a {
	text-decoration: none;
    color: #333333;
	display: block;
	cursor: pointer;
    -webkit-text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

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

hr {
    height: 1px;
    border: none;
}

a[href*="tel:"] {
    display: inline;
}

/*スマホ時電話リンク*/
@media (min-width: 599px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}

/*iPhoneで画面サイズに合わせる*/
@supports (-webkit-touch-callout: none) {
    html {
      height: -webkit-fill-available;
    }
    body {
      min-height: 100vh;
      min-height: -webkit-fill-available;
    }
}

/*-----------------------------共通CSS*/
span.kai {
	display: inline-block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.inner,
ul.inner {
    max-width: 1100px;
    width: calc(100% - 64px);
    margin: 0 auto;
    box-sizing: border-box;
}

main.page {
    margin-top: 90px;
    margin-bottom: 120px;
}

.sp {
    display: none;
}

.bold {
    font-weight: 700;
}

.yellow {
    color: #FFDA36;
}

.blue {
    color: #2672AA;
}

.textLink {
    color: #0D4974;
    text-decoration: underline;
    word-break: break-all;
}

.textLink.mt {
    margin-top: 11px;
}

.textLink:hover {
    color: #2672AA;
    text-decoration: none;
}

/*modBtn1,modBtn2*/
.modBtn1,
.modBtn2 {
    width: 100%;
}

.modBtn1.center {
    margin-right: auto;
    margin-left: auto;
}

.modBtn1 {
    max-width: 300px;
    margin-top: 32px;
}

.modBtn2 {
    max-width: 230px;
    margin-top: 56px;
}

.modBtn1 a,
.modBtn1 button,
.modBtn2 a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 9px 20px;
    background-color: #0D4974;
    border: 1px solid #0D4974;
    border-radius: 100px;
    cursor: pointer;
}

.modBtn1 a,
.modBtn1 button {
    min-height: 56px;
}

.modBtn2 a {
    min-height: 48px;
}

.modBtn1 a:hover,
.modBtn1 button:hover,
.modBtn2 a:hover {
    border: 1px solid #2672AA;
    background: #fff;
}

.modBtn1 a .btnInner,
.modBtn1 button .btnInner,
.modBtn2 a .btnInner {
    position: relative;
    color: #fff;
    padding-right: 28px;
    display: block;
    width: 100%;
    transition: .2s;
    background: url(../img/common/icon-right-white.svg) no-repeat center right;
}

.modBtn1 a .btnInner,
.modBtn1 button .btnInner {
    background-size: 21px;
}

.modBtn2 a .btnInner {
    background-size: 16px;
}

.modBtn1 a:hover .btnInner,
.modBtn1 button:hover .btnInner,
.modBtn2 a:hover .btnInner {
    color: #2672AA;
    background-image: url(../img/common/icon-right-blue.svg);
}

/*modBtn3*/
.modBtn3 {
    width: 100%;
    max-width: 230px;
    margin-top: 32px;
    margin-left: auto;
}

.modBtn3 a {
    position: relative;
    min-height: 48px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 10px 20px;
    background-color: #ECF3F8;
    border: 1px solid #0D4974;
    border-radius: 100px;
}

.modBtn3 a:hover {
    border: 1px solid #0A3A5D;
    background: #0A3A5D;
}

.membersMenu .modBtn3 a {
    min-height: 56px;
    border: 2px solid #0D4974;
}

.membersMenu .modBtn3 a:hover {
    background-color: #fff;
    border: 2px solid #0D4974;
}

.modBtn3 a:hover::before {
    opacity: 1;
}

.modBtn3 a .btnInner {
    position: relative;
    line-height: 1.4;
    color: #0D4974;
    padding-right: 28px;
    display: block;
    width: 100%;
    transition: .2s;
    background: url(../img/common/icon-right-blue2.svg) no-repeat center right;
    background-size: 16px;
}

.modBtn3 a:hover .btnInner {
    color: #fff;
    background-image: url(../img/common/icon-right-white.svg);
}

.membersMenu .modBtn3 a .btnInner {
    background-size: 21px;
}

.membersMenu .modBtn3 a:hover .btnInner {
    color: #0D4974;
    background-image: url(../img/common/icon-right-blue2.svg);
}

/*modBtn4*/
.modBtn4 {
    width: 100%;
    max-width: 420px;
}

.modBtn4 a {
    position: relative;
    height: 72px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 0 57px 0 76px;
    border-radius: 100px;
    background-repeat: no-repeat, no-repeat;
    background-size: 40px, 23px;
    background-position: center left 18px, center right 21px;
}

.modBtn4.joining a {
    background-color: #0B9857;
    border: 1px solid #0B9857;
    background-image: url(../img/common/joining.png), url(../img/common/icon-right-white.svg);
}

.modBtn4.members a {
    background-color: #2672AA;
    border: 1px solid #2672AA;
    background-image: url(../img/common/members.png), url(../img/common/icon-right-white.svg);
}

.modBtn4.joining a:hover {
    background-image: url(../img/common/joining-hover.png), url(../img/common/icon-right-green.svg);
    background-color: #fff;
}

.modBtn4.members a:hover {
    background-image: url(../img/common/members-hover.png), url(../img/common/icon-right-blue.svg);
    background-color: #ECF3F8;
}

.modBtn4 a .btnInner {
    position: relative;
    display: block;
    font-size: 18px;
    width: 100%;
    transition: .2s;
    color: #fff;
}

.modBtn4.joining a:hover .btnInner {
    color: #0B9857;
}

.modBtn4.members a:hover .btnInner {
    color: #2672AA;
}

/*returnBtn*/
.returnBtn {
    width: 100%;
    margin: 72px auto 0 auto;
    max-width: 240px;
}

.returnBtn a,
.returnBtn button {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 0 14px;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 100px;
    cursor: pointer;
    height: 56px;
}

.returnBtn a:hover,
.returnBtn button:hover {
    background: #F2F2F2;
}

.returnBtn a .btnInner,
.returnBtn button .btnInner {
    position: relative;
    color: #fff;
    display: block;
    width: 100%;
    transition: .2s;
    background: url(../img/common/icon-left-white.svg) no-repeat center left;
    background-size: 21px;
    text-align: center;
}

.returnBtn a:hover .btnInner,
.returnBtn button:hover .btnInner {
    color: #333333;
    background-image: url(../img/common/icon-left-gray.svg);
}

/*mailBtn*/
.mailBtn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.mailBtn a {
    position: relative;
    height: 72px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    border-radius: 2px;
    padding: 0 17px;
    background: linear-gradient(135deg, #FFCE00 0%, #FA7300 70%);
}

.mailBtn a:hover {
    background: #FFF7F0;
}

.mailBtn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .2s;
    border-radius: 2px;
    border: 1px solid #FA7300;
    opacity: 0;
}

.mailBtn a:hover::before {
    opacity: 1;
}

.mailBtn a .btnInner {
    position: relative;
    font-weight: 600;
    color: #fff;
    padding: 0 20px 0 30px;
    display: block;
    width: 100%;
    transition: .2s;
    background-image: url(../img/common/icon-mail.svg), url(../img/common/icon-right-white.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center left, center right;
    background-size: 23px, 16px;
}

.mailBtn a:hover .btnInner {
    color: #FA7300;
    background-image: url(../img/common/icon-mail-orange.svg), url(../img/common/icon-right-orange.svg);
}

/*footerBtn*/
.footerBtn {
    width: 100%;
}

.footer .footerBtn {
    min-width: 180px;
}

.hamburger .footerBtn1 {
    margin-bottom: 16px;
}

.footer .footerBtn1 {
    margin-bottom: 8px;
}

.footerBtn a {
    position: relative;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    border-radius: 2px;
    padding: 0 11px;
}

.footerBtn1 a {
    background-color: #2672AA;
    border: 1px solid #2672AA;
}

.footerBtn1 a:hover {
    background-color: #EDF6FD;
}

.footerBtn2 a {
    background-color: #EA8A06;
    border: 1px solid #EA8A06;
}

.footerBtn2 a:hover {
    background-color: #F8F4ED;
}

.footerBtn a .btnInner {
    position: relative;
    font-size: 14px;
    color: #fff;
    padding: 0 17px 0 23px;
    display: block;
    width: 100%;
    transition: .2s;
    background-repeat: no-repeat, no-repeat;
    background-position: center left, center right;
    background-size: 19px, 13px;
}

.hamburger .footerBtn a .btnInner {
    font-size: 15px;
    background-size: 23px, 14px;
    padding: 0 20px 0 30px;
}

.footerBtn1 a .btnInner {
    background-image: url(../img/common/icon-member.svg), url(../img/common/icon-right-white.svg);
}

.footerBtn1 a:hover .btnInner {
    color: #2672AA;
    background-image: url(../img/common/icon-member-hover.svg), url(../img/common/icon-right-blue.svg);
}

.footerBtn2 a .btnInner {
    background-image: url(../img/common/icon-mail2.svg), url(../img/common/icon-right-white.svg);
}

.footerBtn2 a:hover .btnInner {
    color: #EA8A06;
    background-image: url(../img/common/icon-mail2-hover.svg), url(../img/common/icon-right-orange.svg);
}

/*moreBtn*/
.moreBtn {
    text-align: right;
}

.moreBtn .moreInner {
    display: inline-block;
    color: #0D4974;
    padding-right: 28px;
    background: url(../img/common/icon-right-blue2.svg) no-repeat center right;
    background-size: 16px;
    border-bottom: 1px solid #0D4974;
    transition: .2s;
    line-height: 28px;
}

a:hover .moreBtn .moreInner {
    color: #2672AA;
    background-image: url(../img/common/icon-right-blue.svg);
    border-bottom: 1px solid #2672AA;
}

.moreBtnWhite .moreInner,
a:hover .moreBtnWhite .moreInner {
    color: #fff;
    background-image: url(../img/common/icon-right-white.svg);
    border-bottom: 1px solid #fff;
}

/*loginBtn*/
.loginBtn {
    width: 100%;
    max-width: 315px;
    margin: 40px auto 0 auto;
}

.loginBtn button {
    width: 100%;
    color: #fff;
    border: none;
    text-align: center;
    line-height: 46px;
    background-color: #333333;
    transition: .2s;
    cursor: pointer;
}

.loginBtn button:hover {
    background-color: #666666;
}

/*dlBtn*/
.dlBtn {
    width: 100%;
    max-width: 370px;
    margin: 30px 0;
}

.dlBtn a {
    position: relative;
    min-height: 54px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 6px 30px 6px 45px;
    background-color: #0D4974;
    border: 1px solid #0D4974;
    border-radius: 2px;
    background-image: url(../img/common/icon-dl.svg), url(../img/common/icon-link-white.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 20.57px, 6.81px;
    background-position: center left 15px, center right 13px;
}

.dlBtn a:hover {
    background-image: url(../img/common/icon-dl-hover.svg), url(../img/common/icon-link-blue.svg);
    background-color: #F2F9FD;
}

.dlBtn a .btnInner {
    position: relative;
    color: #fff;
    display: block;
    width: 100%;
    transition: .2s;
}

.dlBtn a:hover .btnInner {
    color: #0D4974;
}

/*anchorBtn*/
.anchorBtn {
    width: 100%;
    max-width: 280px;
}

.anchorBtn a {
    position: relative;
    min-height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    padding: 12px 35px;
    background-color: #0D4974;
    border: 1px solid #0D4974;
    border-radius: 2px;
    background-image: url(../img/common/icon-bottom-white.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center right 11px;
    border-radius: 2px;
}

.anchorBtn a:hover {
    background-image: url(../img/common/icon-bottom-blue.svg);
    background-color: #F2F9FD;
}

.anchorBtn a .btnInner {
    position: relative;
    font-weight: 700;
    color: #fff;
    transition: .2s;
}

.anchorBtn a:hover .btnInner {
    color: #0D4974;
}

/*sectionTitle*/
.sectionTitle {
    position: relative;
    margin-bottom: 56px;
    font-family: "Noto Serif JP", serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 16px;
    text-align: center;
}

.sectionTitleWhite {
    color: #fff;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 40px;
    height: 2px;
    background-color: #6FCECA;
}

.sectionTitleWhite::before {
    background-color: #FFDA36;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% + 10px);
    transform: translateX(-50%);
    margin: auto;
    width: 20px;
    height: 2px;
    background-color: #0A3A5D;
}

/*タイトル*/
.h1 {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 16px;
    line-height: 1.4;
    border-bottom: 1px solid #C1C1C1;
}

.h2 {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 700;
    padding-left: 14px;
    margin-bottom: 48px;
    line-height: 1.4;
    border-left: 2px solid #CCCCCC;
    color: #0D4974;
}

.h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    height: 12px;
    width: 2px;
    background-color: #2672AA;
}

/*h3*/
.h3 {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    font-weight: 700;
    padding: 0 0 12px 24px;
    margin-bottom: 32px;
    line-height: 1.4;
    border-bottom: 1px solid #CCCCCC;
}

.h3::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #0D4974;
}

.h3::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 7px;
    height: 9px;
    width: 9px;
    background-color: #6FCECA;
}

.h4 {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding-left: 36px;
    margin-bottom: 16px;
    color: #0D4974;
}

.h4::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 24px;
    height: 1px;
    background: #0D4974;
}

.h5 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.555555;
    padding-left: 24px;
    margin-bottom: 13px;
}

.h5::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #0D4974;
}

.h6 {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    padding-left: 18px;
    margin-top: 16px;
    margin-bottom: 12px;
}

.h6::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #F2E474;
}

/*ol*/
ol.listNum {
    counter-reset: item;
    margin-top: 25px;
}

ol.listNum2 {
    margin-top: 16px;
}

ol.listNum li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 1px;
}

ol.listNum li::before {
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: item;
    content: counter(item)'.';
}

ol.listNum2 li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    counter-increment: item;
    content: counter(item)'';
    font-size: 12px;
    text-align: center;
}

ol.listNum2 li::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    border: 1px solid #333;
}

/*ul*/
ul.list {
    margin-bottom: 5px;
}

ul.list.mt {
    margin-top: 5px;
}

.list li {
    position: relative;
    padding-left: 22px;
}

.list li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

/*pageTitle*/
.pageTitle {
    margin-bottom: 48px;
}

.pageTitle .pageTitleInner {
    position: relative;
    height: 151px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.pageTitle .pageTitleInner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D3D3D3;
}

.pageTitle .en {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #D6C434;
    padding-bottom: 16px;
}

.pageTitle .en.lato {
    font-family: "Lato", sans-serif;
}

.pageTitle .en::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 32px;
    height: 1px;
    background-color: #D6C434;
}

.pageTitle .ja {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.pageTitle .img {
    width: 100%;
    height: 230px;
    margin-top: 48px;
}

.pageTitle .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageTitle .pageTitleSub {
    margin-top: 48px;
}

.pageTitle .pageTitleSub .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .03em;
    margin-top: 48px;
    text-align: center;
}

.pageTitle .pageTitleSub .cm {
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 72px;
}

.pageTitle .pageTitleSub .cm.center {
    text-align: center;
}

@media screen and (max-width: 1023px){

    main.page {
        margin-top: 62px;
    }

}

@media screen and (max-width: 599px){

    main.page {
        margin-bottom: 80px;
    }


    .pageTitle {
        margin-bottom: 40px;
    }

    .pageTitle .pageTitleInner {
        height: 140.5px;
    }

    .pageTitle .pageTitleInner::before {
        left: -16px;
        width: calc(100% + 32px);
    }

    .pageTitle .ja {
        font-size: 27px;
    }

    .pageTitle .img {
        height: 53.86666666666666vw;
        min-height: 202px;
        max-height: 230px;
        margin-top: 40px;
    }

    .pageTitle .pageTitleSub {
        margin-top: 40px;
    }

    .pageTitle .pageTitleSub .title {
        font-size: 25px;
        margin-top: 40px;
    }

    .pageTitle .pageTitleSub .cm {
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .pageTitle .pageTitleSub .cm.center {
        text-align: left;
    }

}

/*pageSection*/
.pageSection {
    margin-bottom: 88px;
}

@media screen and (max-width: 599px){

    .pageSection {
        margin-bottom: 64px;
    }

}

/*pageMv*/
.pageMv {
    height: 240px;
    background: url(../img/common/page-bg-pc.jpg) no-repeat center right;
    background-size: cover;
    margin-bottom: 12px;
}

.pageMv .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.pageMv .sub {
    font-size: 14px;
    font-weight: 500;
    color: #0D4974;
    padding-left: 36px;
    margin-bottom: 2px;
}

.pageMv .title {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 36px;
}

.pageMv .title::before,
.pageMv .title::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    height: 20px;
}

.pageMv .title::before {
    width: 20px;
    background-color: #0A3A5D;
}

.pageMv .title::after {
    width: 10px;
    background-color: #2672AA;
}

/*パンくず*/
ul.breadcrumb {
    justify-content: flex-end;
    column-gap: 24px;
    margin: 0 auto 80px auto;
}

.breadcrumb li {
    position: relative;
    font-size: 13px;
    font-weight: 400;
}

.breadcrumb li:not(:last-of-type)::before {
    content: "＞";
    position: absolute;
    top: 0;
    right: -20px;
    color: #1A1A1A;
}

.breadcrumb li a {
    text-decoration: underline;
}

.breadcrumb li a:hover {
    opacity: .7;
    text-decoration: none;
}

/*table*/
.table,
.table th,
.table td {
	border-collapse: collapse;
}

.table {
    width: 100%;
}

/*table1*/
.table1 {
    border-top: 1px solid #707070;
    table-layout: fixed;
}

.table1 th,
.table1 td {
    border-bottom: 1px solid #707070;
    vertical-align: middle;
    padding: 21px 20px;
    text-align: left;
}

.table1 th {
    font-weight: bold;
	background: #F5F5F5;
    width: 30%;
}

.table1 td {
    letter-spacing: .03em;
}

/*sectionTopMb*/
.sectionTopMb {
    margin-bottom: 96px;
}

/*swiper*/
.swiper-button,
.swiper-button {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}

.picUpTopSwiper .swiper-button {
    top: 68px;
}

.featureSwiper .swiper-button {
    top: 106px;
}

.swiper-button .swiper-button-prev,
.swiper-button .swiper-button-next {
    margin-top: 0;
    top: 0;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 40px;
    z-index: 10;
}
  
.swiper-button .swiper-button-prev {
    right: 64px;
    background: url(../img/common/prev.png) no-repeat center;
    background-size: 40px;
}

.swiper-button .swiper-button-next {
    right: 0;
    background: url(../img/common/next.png) no-repeat center;
    background-size: 40px;
}

.hoverOpacity a {
    transition: .2s;
}

.hoverOpacity a:hover {
    opacity: .7;
}

.swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #CCCCCC;
    opacity: 1;
    transition: .5s;
    margin: 0 6px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2672AA;
}

@media screen and (max-width: 799px){

    .picUpTop .picUpTopSwiper {
        margin: 0;
    }

}

@media screen and (max-width: 599px){

    .picUpTopSwiper .swiper-button {
        top: 86px;
    }

    .featureSwiper .swiper-button {
        top: 127px;
    }

    .swiper-button .swiper-button-prev,
    .swiper-button .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button .swiper-button-prev {
        right: 52px;
        background-size: 36px;
    }

    .swiper-button .swiper-button-next {
        background-size: 36px;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

}

@media screen and (max-width: 1023px){

    .hamburger .innerTablet,
    .hamburger ul.innerTablet {
        max-width: 568px;
    }

}

@media screen and (max-width: 799px){

    .innerTablet,
    ul.innerTablet {
        max-width: 568px;
    }

}

@media screen and (max-width: 599px){

    .inner,
    ul.inner {
        width: calc(100% - 32px);
    }

    main.page .breadcrumb.inner,
    main.page .content.inner {
        width: calc(100% - 60px);
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    /*pageMv*/
    .pageMv {
        height: 220px;
        background-image: url(../img/common/page-bg-sp.jpg);
    }

    .pageMv .sub {
        padding-left: 29px;
    }

    .pageMv .title {
        font-size: 31px;
        padding-left: 29px;
    }

    .pageMv .title::before,
    .pageMv .title::after {
        top: 16px;
        height: 16px;
    }

    .pageMv .title::before {
        width: 16px;
    }

    .pageMv .title::after {
        width: 6px;
    }

    /*パンくず*/
    ul.breadcrumb {
        justify-content: flex-start;
        margin: 0 auto 40px auto;
    }

    /*sectionTitle*/
    .sectionTitle {
        margin-bottom: 40px;
        font-size: 32px;
        padding-bottom: 12px;
    }

    .h2 {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .h6 {
        margin-bottom: 16px;
    }

    /*modBtn1,modBtn2*/
    .modBtn1,
    .modBtn2 {
        margin-left: auto;
        margin-right: auto;
    }

    .modBtn1 {
        max-width: 300px;
        margin-top: 32px;
    }

    .modBtn2 {
        max-width: 300px;
        margin-top: 40px;
    }

    .modBtn2 a {
        height: 56px;
    }

    .modBtn2 a .btnInner {
        background-size: 21px;
    }

    /*modBtn3*/
    .modBtn3 {
        max-width: 300px;
        margin-right: auto;
    }

    .modBtn3 a {
        min-height: 56px;
        padding: 15.5px 20px;
    }

    .modBtn3 a .btnInner {
        background-size: 21px;
    }

    .membersMenu .modBtn3 a,
    .membersMenu .modBtn3 a:hover {
        border: 1px solid #0D4974;
    }


    /*modBtn4*/
    .modBtn4 a {
        height: 64px;
        padding: 0 40px 0 57px;
        background-size: 34px, 20px;
        background-position: center left 14px, center right 13px;
    }

    /*footerBtn*/
    .footer .footerBtn {
        max-width: 180px;
    }

    .returnBtn {
        margin: 48px auto 0 auto;
    }

    /*anchorBtn*/
    .anchorBtn a {
        justify-content: flex-start;
        min-height: 44px;
        padding: 6px 14px;
        background-position: center right 9px;
    }

    /*table1*/
    .table1 tr {
        border-bottom: 1px solid #707070;
    }
    
    .table1 th,
    .table1 td {
        display: block;
        border-bottom: none;
        padding: 17px 10px;
        width: 100%;
        min-width: auto;
    }

    .table1 td {
        padding: 26px 10px;
    }

    /*sectionTopMb*/
    .sectionTopMb {
        margin-bottom: 64px;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

ヘッダー

--------------------------------------------------------------------------------------------------------------------*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 100;
    border-top: 4px solid #2672AA;
    border-bottom: 1px solid #CCCCCC;
    height: 90px;
    padding: 0 min(40px,2.857142857142857vw);
}

.header .headerInner {
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin-top: -2px;
}

/*-----------------------------左ロゴ*/
.header .logo {
    width: 29.192857142857143vw;
    max-width: 408.7px;
}

.header .logo img {
    width: 100%;
}

.header .logo .text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header .logo .cm {
    font-size: min(14px,1vw);
    padding-left: min(62px,4.428571428571428vw);
}

/*-----------------------------メニュー*/
.header .nav {
    max-width: 805px;
    width: 57.6vw;
    height: 100%;
    justify-content: flex-end;
}

/*navTop*/
.header .navTop {
    align-items: center;
    column-gap: 24px;
}

.header .navTop .headerBtn1 a {
    font-size: 14px;
    color: #666666;
    padding: 0 21px 0 23px;
    margin-top: 7px;
    background-image: url(../img/common/icon-file.svg), url(../img/common/icon-right-gray.svg);
    background-repeat: no-repeat;
    background-size: 19px, 13px;
    background-position: center left, center right;
    border-bottom: 1px solid #666666;
    transition: .2s;
}

.header .navTop .headerBtn1 a:hover {
    color: #2672AA;
    background-image: url(../img/common/icon-file-hover.svg), url(../img/common/icon-right-blue.svg);
    border-bottom: 1px solid #2672AA;
}
.header .navTop .headerBtn1.mypage a {
    background-image: url(../img/common/icon-mypage.svg), url(../img/common/icon-right-gray.svg);
}
.header .navTop .headerBtn1.mypage a:hover {
    background-image: url(../img/common/icon-mypage-hover.svg), url(../img/common/icon-right-blue.svg);
}

.header .navTop .headerBtn2 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
    width: 154px;
    background-color: #2672AA;
    border-radius: 0 0 8px 8px;
    padding-top: 6px;
}

.header .navTop .headerBtn2 a .btnInner {
    font-size: 15px;
    color: #fff;
    padding: 0 21px 0 20px;
    background-image: url(../img/common/icon-mail.svg), url(../img/common/icon-right-white.svg);
    background-repeat: no-repeat;
    background-size: 16px, 13px;
    background-position: center left, center right;
    transition: .2s;
}

.header .navTop .headerBtn2 a:hover .btnInner {
    opacity: .7;
}

/*navBottom*/
.header .navBottom {
    position: relative;
    column-gap: min(32px,2.2857142857142856vw);
}

.header .navBottom .navGroup {
    position: relative;
}

.header .navBottom .navGroup .main {
    position: relative;
    font-size: min(15px,1.0714285714285714vw);
    transition: .2s;
    padding: 9px 0;
}

.header .navBottom .navGroup:hover .main {
    color: #2672AA;
}

.header .navBottom .navGroup .main::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #2672AA;
    bottom: min(9px,.87vw);
    transform: scale(0, 1);
    transform-origin: center top;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header .navBottom .navGroup:hover .main::after {
    transform: scale(1, 1);
    opacity: 1;
}

.header .navBottom .navGroup .subMenu {
    position: absolute;
    top: min(42px,3.52vw);
    left: 0;
    width: 100%;
    background-color: #F5F2F2;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(10,58,93,.16);
    opacity: 0;
    z-index: -1;
    transition: .2s;
    pointer-events: none;
    padding: 8px 15px;
    height: min(105px,8.5vw);
}

.header .navBottom .navGroup:hover .subMenu {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.header .navBottom .navGroup .subMenu li a {
    font-size: min(14px,1vw);
    padding: 3px 20px 3px 0;
    background: url(../img/common/icon-right-blue2.svg) no-repeat center right;
    background-size: 13px;
    transition: .2s;
}

.header .navBottom .navGroup .subMenu li a:hover {
    color: #2672AA;
    background-image: url(../img/common/icon-right-blue.svg);
}

@media screen and (max-width: 1023px){

    .header {
        height: 62px;
        border-bottom: none;
        padding: 8px 16px;
    }

    /*-----------------------------左ロゴ*/
    .header .logo {
        width: 100%;
        max-width: 276.17px;
    }

    .header .logo .cm {
        font-size: 10px;
        padding-left: 41px;
    }

    /*-----------------------------メニュー*/
    .header .nav {
        display: none;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

ハンバーガーメニュー

--------------------------------------------------------------------------------------------------------------------*/
.hamburger {
	display: none;
}

/*----------------------------------------------------------------------三本ライン*/
.hamburger .line {
    position: fixed;
    top: 12px;
    right: 16px;
    display: flex;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    z-index: 999999;
	cursor: pointer;
    background-color: #F2F2F2;
}

.hamburger .line span,
.hamburger .line span:before,
.hamburger .line span:after {
    content: '';
    display: block;
    height: 1px;
    width: 20px;
    background-color: #0A3A5D;
    position: absolute;
}

.hamburger .line span {
    top: 20px;
    right: 10px;
}

/*.line1*/
.hamburger .line span.line1:before {
    bottom: 6px;
    left: 0;
}

.hamburger .line span.line1:after {
    top: 6px;
    left: 0;
}

/*open*/
.hamburger .line.is-activeLine span.line1 {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

.hamburger .line.is-activeLine span.line1::before {
    bottom: 0;
    transform: rotate(45deg);
}

.hamburger .line.is-activeLine span.line1::after {
    top: 0;
    transform: rotate(-45deg);
}

/* アニメーション前のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: auto;
    opacity: 1;
}

/* アニメーション後のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: none;
    opacity: 0;
}

.hamburger .line.is-activeLine span.line1 {
    pointer-events: none;
    opacity: 0;
}

/* アニメーション後のメニューの状態 */
.hamburger .line.is-activeLine span.line1 {
    pointer-events: auto;
    opacity: 1;
}

@media screen and (max-width: 1023px){

	.hamburger {
		display: block;
	}
		
}

/*-----------------------------------------------------------------------中のメニュー*/
.hamburger .menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box; /* 追加 */
    z-index: 80;
    background: #ECF3F8;
    padding: 86px 30px 92px 30px;
    scrollbar-width: none; /* Firefox用 */
    -ms-overflow-style: none; /* IE・Edge旧対応 */
}

.hamburger .menu::-webkit-scrollbar {
    display: none; /* Chrome/Safari用 */
}

/*動き*/
/* アニメーション前のメニューの状態 */
.hamburger .menu {
    pointer-events: none;
    opacity: 0;
    transition: .2s;
}

/* アニメーション後のメニューの状態 */
.hamburger .menu.is-active {
    pointer-events: auto;
    opacity: 1;
}

.hamburger .innerTablet {
    width: 100%;
}

/*menu*/
.hamburger .menu .navList {
    margin-bottom: 32px;
}

.hamburger .menu .navList .navGroup {
    border-bottom: 1px solid #CCCCCC;
}

.hamburger .menu .navList .main {
    font-size: 16px;
    padding: 12.5px 20px 12.5px 0;
}

.hamburger .menu .navList .link {
    background: url(../img/common/icon-right-blue2.svg) no-repeat center right;
    background-size: 14.66px;
}

.hamburger .menu .navList .toggleBtn {
    position: relative;
    cursor: pointer;
}

.hamburger .menu .navList .toggleBtn .icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 14px;
    height: 14px;
}

.hamburger .menu .navList .toggleBtn .icon .line1,
.hamburger .menu .navList .toggleBtn .icon .line2 {
    position: absolute;
    background-color: #0D4974;
    border-radius: 2px;
}

.hamburger .menu .navList .toggleBtn .icon .line1 {
    left: 0;
    top: 6px;
    width: 100%;
    height: 2px;
}

.hamburger .menu .navList .toggleBtn .icon .line2 {
    top: 0;
    left: 6px;
    height: 100%;
    width: 2px;
}

.hamburger .menu .navList .toggleBtn.is-active .icon .line2 { /* アイコン縦棒なし（開いてるとき） */
    opacity: 0;
}

.hamburger .menu .child {
	display: none;
}

.hamburger .menu .subMenu {
    padding: 0 0 15px 23px;
}

.hamburger .menu .subMenu li a {
    font-size: 14px;
    padding: 0 0 0 13px;
    background: url(../img/common/icon-link-blue.svg) no-repeat top 9px left;
    background-size: 5px;
}

.hamburger .menu .navBtn {
    padding: 0 8px;
}

/*--------------------------------------------------------------------------------------------------------------------

フッター
--------------------------------------------------------------------------------------------------------------------*/
/*bottomContent*/
.bottomContent {
    position: relative;
    padding: 72px 0 125px 0;
    background-color: #F7F6F4;
}

.bottomContent .flow {
    margin-bottom: 72px;
}

.bottomContent .step {
    column-gap: 51px;
    row-gap: 39px;
    margin-top: 12px;
}

.bottomContent .step .box {
    position: relative;
    width: calc(100% / 4 - 38.3px);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(183,152,98,.2);
    padding: 24px 14px 20px 14px;
}

.bottomContent .step .box::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 28px solid #E2DDB9;
    border-right: 0;
}

.bottomContent .step .box:last-child:before {
    display: none;
}

.bottomContent .step .box .num {
    position: absolute;
    top: -12px;
    left: 14px;
    width: 80px;
    height: 29px;
    line-height: 29px;
    border-radius: 3px;
    text-align: center;
    background-color: #D6C434;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.bottomContent .step .box .img {
    margin: 0 auto;
    width: 88px;
    height: 88px;
    object-fit: cover;
}

.bottomContent .step .box .text .title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 9px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #C1C1C1;
}

.bottomContent .step .box .text .cm {
    font-size: 14px;
    line-height: 1.9285714;
}

.bottomContent .line {
    margin: 72px auto;
    background-color: #D3D3D3;
    border: none;
}

@media screen and (max-width: 1023px){

    .bottomContent .line {
        margin: 56px auto;
        width: 100%;
    }

}

@media screen and (max-width: 899px){

    .bottomContent .step .box {
        display: flex;
        column-gap: 24px;
        align-items: center;
        width: 100%;
        max-width: 568px;
        margin: 0 auto;
    }

    .bottomContent .step .box::before {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -15px;
        transform: translateX(-50%);
        margin: auto;
        border-right: 34px solid transparent;
        border-left: 34px solid transparent;
        border-top: 15px solid #E2DDB9;
        border-bottom: 0;
    }

    .bottomContent .step .box .img {
        margin: 0;
        width: 88px;
        height: 88px;
        object-fit: cover;
    }

    .bottomContent .step .box .text .title {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        padding: 9px 0;
        margin-bottom: 10px;
        border-bottom: 1px solid #C1C1C1;
    }

    .bottomContent .step .box .text {
        width: calc(100% - 112px);
    }

    .bottomContent .step .box .text .cm {
        font-size: 14px;
        line-height: 1.9285714;
    }

}

@media screen and (max-width: 599px){

    .bottomContent {
        padding: 56px 0 72px 0;
    }

    .bottomContent .flow {
        margin-bottom: 56px;
    }

    .bottomContent .step .box {
        padding: 22px 19px 21px 19px;
    }

    .bottomContent .step .box .img {
        width: 80px;
        height: 80px;
    }

    .bottomContent .step .box .text .title {
        padding: 0 0 8px 0;
        margin-bottom: 8px;
    }

}

/*faqList*/
.faqList .box {
    border-bottom: 1px solid #C1C1C1;
}

.faqList .box .toggleBtn {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
    font-weight: 600;
    padding: 22px 32px 22px 47px;
    cursor: pointer;
}

.faqTop .faqList .box .toggleBtn {
    padding: 22px 55px 22px 64px;
}

.pageFaq .faqList .box:first-child .toggleBtn {
    padding-top: 0;
}

.faqList .box .toggleBtn::before,
.faqList .box .toggleBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    background-color: #0D4974;
    border-radius: 2px;
}

.pageFaq .faqList .box:first-child .toggleBtn::before {
    top: 16px;
}

.pageFaq .faqList .box:first-child .toggleBtn::after {
    top: 16px;
}

.faqList .box .toggleBtn::before {
    right: 0;
    width: 21px;
    height: 2px;
}

.faqTop .faqList .box .toggleBtn::before {
    right: 17px;
}

.faqList .box .toggleBtn::after {
    right: 9px;
    height: 21px;
    width: 2px;
}

.faqTop .faqList .box .toggleBtn::after {
    right: 26px;
}

.faqList .box .toggleBtn.is-active::after { /* アイコン縦棒なし（開いてるとき） */
    opacity: 0;
}

.faqList .box .qa {
    position: absolute;
    left: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 37px;
    text-align: center;
}

.faqTop .faqList .box .qa {
    left: 17px;
}

.faqList .box .qa.q {
    top: 17px;
    background-color: #EDF6FD;
    color: #2672AA;
}

.pageFaq .faqList .box:first-child .qa.q {
    top: 0;
}

.faqList .box .qa.a {
    top: 0;
    background-color: #2672AA;
    color: #fff;
}

.faqList .box .child {
    position: relative;
    display: none;
    padding: 4px 0 20px 47px;
}

.faqTop .faqList .box .child {
    padding: 4px 17px 20px 65px;
}

.faqList .list .bold {
    padding: 0;
}

.faqList .list .bold::before {
    display: none;
}

@media screen and (max-width: 599px){

    .faqList .box .toggleBtn,
    .faqTop .faqList .box .toggleBtn {
        font-size: 16px;
        padding: 12px 33px 12px 49px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .faqTop .faqList .box .toggleBtn {
        padding: 12px 33px 12px 49px;
    }

    .faqList .box:first-child .toggleBtn {
        min-height: 51px;
    }

    .faqList .box .toggleBtn::before,
    .faqTop .faqList .box .toggleBtn::before,
    .faqList .box .toggleBtn::after,
    .faqTop .faqList .box .toggleBtn::after {
        transform: none;
        margin: 0;
    }

    .faqList .box .toggleBtn::before,
    .faqTop .faqList .box .toggleBtn::before {
        top: 34px;
        right: 0;
        width: 21px;
        height: 2px;
    }

    .faqList .box .toggleBtn::after,
    .faqTop .faqList .box .toggleBtn::after {
        top: 24px;
        right: 9px;
    }

    .pageFaq .faqList .box:first-child .toggleBtn::before {
        top: 18px;
    }

    .pageFaq .faqList .box:first-child .toggleBtn::after {
        top: 9px;
    }

    .faqList .box .qa,
    .faqTop .faqList .box .qa {
        font-size: 15px;
        left: 0;
    }

    .faqList .box .qa.a {
        top: 4px;
    }

    .faqList .box .child,
    .faqTop .faqList .box .child {
        padding: 4px 0 16px 49px;
    }

}

/*faqTop*/
.faqTop {
    position: relative;
    padding-top: 88px;
    margin-top: -150px;
}

.faqTop::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 439px;
    width: calc(100% - 7.14285714%);
    background: url(../img/top/faq-top-bg.jpg) no-repeat center left;
    background-size: cover;
}

.faqTop::after {
    content: "";
    position: absolute;
    top: 305px;
    left: 4.71428571%;
    height: 169px;
    width: 169px;
    background-color: #A8C9E2;
    z-index: -1;
}

.faqTop .faqTopInner {
    max-width: 1000px;
    width: calc(100% - 20%);
}

.faqTop .sectionTitle {
    color: #fff;
}

.faqTop .faqListBox {
    position: relative;
    background-color: #fff;
    padding: 36px 50px 56px 50px;
    box-shadow: 0px 0px 10px 0px rgba(3,30,49,.12);
}

@media screen and (min-width: 600px){
    
    .faqTop .faqListBox .modBtn1 {
        margin-top: 40px;
    }

}

@media screen and (max-width: 1023px){

    .anchorBtn a:hover {
        background-color: #0D4974;
        background-image: url(../img/common/icon-bottom-white.svg);
    }

    .anchorBtn a:hover .btnInner {
        color: #fff;
    }

}

@media screen and (max-width: 799px){

    .faqTop::before {
        width: calc(100% - 32px);
    }

    .faqTop::after {
        left: 0;
    }

    .faqTop .faqTopInner {
        width: 100%;
    }

    .faqTop .sectionTitle {
        color: #fff;
    }

    .faqTop .faqListBox {
        padding: 36px 36px 40px 23px;
        margin-left: 8.5%;
    }

}

@media screen and (max-width: 599px){

    .faqTop {
        padding-top: 65px;
        margin-top: -148px;
    }

    .faqTop::before {
        width: calc(100% - 16px);
        background-image: url(../img/top/faq-top-bg-sp.jpg);
    }

    .faqTop::after {
        top: 340px;
        height: 120px;
        width: 120px;
    }

    .faqTop .faqListBox {
        padding: 24px 36px 40px 23px;
    }

}

/*pageFaq*/
.pageFaq .section {
    margin-bottom: 88px;
}

@media screen and (max-width: 599px){
    
    .pageFaq .section {
        margin-bottom: 56px;
    }

}

/*footerContact*/
.footerContact {
    position: relative;
    background: url(../img/common/footer-contact-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 68px 0;
}

.footerContact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    background-color: #165E93;
}

.footerContact .inner {
    position: relative;
}

.footerContact .sectionTitle {
    margin-bottom: 32px;
}

.footerContact .cm {
    text-align: center;
    color: #fff;
    margin-bottom: 56px;
}

@media screen and (max-width: 799px){

    .footerContact {
        background-image: url(../img/common/footer-contact-bg-sp.jpg);
    }

}

@media screen and (max-width: 599px){

    .footerContact {
        padding: 55px 0 91px 0;
    }

    .footerContact .cm {
        margin-bottom: 48px;
    }

}

/*footer*/
.footer {
    position: relative;
    background-color: #F2F2F2;
    padding: 62px 0 20px 0;
}

.footer .footerInner {
    justify-content: space-between;
}

/*left*/
.footer .left {
    width: 37%;
}

.footer .logo {
    max-width: 408.7px;
}

.footer .logo img {
    width: 100%;
}

.footer .logo .text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer .logo .cm {
    font-size: 14px;
    padding-left: 62px;
}

.footer .left .info {
    font-size: 15px;
    margin: 24px 0 16px 0;
}

/*right*/
.footer .right {
    width: 43.27%;
    justify-content: space-between;
    column-gap: 10px;
}

.footer .right .navList .navGroup {
    margin-bottom: 19px;
}

.footer .right .navList1 .navGroup:last-child {
    margin-bottom: 0;
}

.footer .right .navList a {
    transition: .2s;
}

.footer .right .navList a:hover {
    color: #2672AA;
}

.footer .right .navList .main {
    font-weight: 600;
}

.footer .right .navList .subMenu {
    padding: 6px 0 0 24px;
}

.footer .right .navList .subMenu li {
    margin-bottom: 9px;
}

.footer .right .navList .subMenu li:last-child {
    margin-bottom: 0;
}

.footer .right .navList .subMenu a {
    position: relative;
    font-size: 14px;
    padding-left: 12px;
}

.footer .right .navList .subMenu a::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #0D4974;
    transition: .2s;
}

.footer .right .navList .subMenu a:hover::before {
    background-color: #2672AA;
}

/*copy*/
.footer .copy {
    font-size: 14px;
    margin-top: 63px;
}

/*pageTop*/
.footer .pageTopInner {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 100%;
    height: 35px;
    z-index: 1;
    max-width: 1320px;
}

.footer .pageTop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 35px;
    padding: 5px 9px;
    font-size: 15px;
    transition: .2s;
    background: url(../img/common/icon-link-top.svg) no-repeat top 13px right 8px;
    background-size: 14px;
    background-color: #F2F2F2;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.footer .pageTop::before {
    content: "";
    position: absolute;
    bottom: 7px;
    right: 14px;
    height: 14px;
    width: 2px;
    border-radius: 2px;
    background-color: #2672AA;   
    transition: .2s;
}
  
.footer .pageTop:hover {
    background-position: top 7px right 8px;
}

.footer .pageTop:hover::before {
    height: 18.48px;
}

@media screen and (max-width: 1023px){

    .footer .footerInner {
        justify-content: center;
        flex-direction: column;
    }

    /*left*/
    .footer .left {
        width: 100%;
        margin-bottom: 63px;
    }

    .footer .left .logo {
        margin: 0 auto;
    }

    .footer .left .info {
        text-align: center;
    }

    /*right*/
    .footer .right {
        width: 100%;
        max-width: 476px;
        margin: 0 auto;
    }

    /*copy*/
    .footer .copy {
        width: 100%;
        max-width: 467px;
        margin: 63px auto 0 auto;
    }

    /*pageTop*/
    .footer .pageTop:hover {
        background-position: top 13px right 8px;
    }

    .footer .pageTop:hover::before {
        height: 14px;
    }

}

@media screen and (max-width: 599px){

    .footer {
        padding: 36px 0 20px 0;
    }

    /*left*/
    .footer .left {
        margin-bottom: 24px;
    }

    .footer .logo {
        max-width: 343px;
    }

    .footer .logo .cm {
        font-size: 13px;
        padding-left: 52px;
    }

    /*right*/
    .footer .right {
        justify-content: center;
        column-gap: 0;
    }
    
    .footer .right .navList .navGroup {
        display: none;
    }

    /*copy*/
    .footer .copy {
        margin: 48px auto 0 auto;
    }

}

/*--------------------------------------------------------------------------------------------------------------------

トップページ

--------------------------------------------------------------------------------------------------------------------*/
/*-----------------------------MV*/
.mv {
    position: relative;
    padding: 107px 0 30px 0;
    margin-bottom: 40px;
    max-width: 640px;
    width: 100%;
}

.mv .mvSwiper {
    position: relative;
    height: 100%;
}

.mvSwiper .swiper-slide {
    width: 100%;
    transition: .2s;
}

.mvSwiper .swiper-slide:hover {
    opacity: .7;
}

.mv .mvSwiper .swiper-pagination {
    bottom: -35px;
}

@media screen and (max-width: 1023px){

    .mv {
        padding: 62px 0 24px 0;
    }

}

@media screen and (max-width: 599px){

    .mv {
        margin-bottom: 25px;
    }

    .mv .mvSwiper .swiper-pagination {
        bottom: -31px;
    }

}

/*shopList*/
.pageBuilder .shopList {
    column-gap: 20px;
    row-gap: 40px;
}

.pageBuilder .shopList .box {
    width: calc(100% / 4 - 15px);
}

.shopList .box .img {
    position: relative;
    overflow: hidden;
    max-height: 160px;
    height: 14vw;
    margin: 0 0 10px 4px;
}

.pageBuilder .shopList .box .img {
    margin-left: 0;
}

.shopList .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.shopList .box:hover .img img {
    transform: scale(1.059);
}

.shopList .box .title {
    position: relative;
    font-weight: 500;
    padding-left: 10px;
    text-decoration: underline;
}

.pageBuilder .shopList .box .title {
    font-size: 15px;
}

.shopList .box .title::before,
.shopList .box .title::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    height: 100%;
}

.shopList .box .title::before {
    width: 4px;
    background-color: #0A3A5D;
}

.shopList .box .title::after {
    width: 2px;
    background-color: #2672AA;
}

.shopList .box .title .shop {
    font-size: 15px;
    display: block;
}

.shopList .box .title .place {
    font-size: 13px;
    color: #666666;
    display: block;
}

.shopList .box:hover .title {
    text-decoration: none;
}

.shopList .box:hover .title .shop,
.shopList .box:hover .title .place {
    color: #2672AA;
}

@media screen and (min-width: 800px){

    .picUpTop .shopList .box .img {
        height: 160px;
    }

}

@media screen and (max-width: 799px){

    .pageBuilder .shopList .box {
        width: calc(100% / 2 - 15px);
    }

    .shopList .box .img {
        max-height: 100%;
        height: 42.66666666666667vw;
        min-height: 160px;
    }

    .pageBuilder .shopList .box .img {
        min-height: auto;
        height: 26vw;
    }

}

@media screen and (max-width: 599px){

    .pageBuilder .shopList {
        row-gap: 16px;
    }

    .pageBuilder .shopList .box {
        width: 100%;
    }

    .shopList .box .img {
        margin: 0 0 14px 4px;
    }

    .pageBuilder .shopList .box .img {
        min-height: 193px;
        height: 51vw;
    }

}

/*pageBuilder*/
.pageBuilder .section {
    margin-bottom: 80px;
}

@media screen and (max-width: 599px){

    .pageBuilder .section {
        margin-bottom: 56px;
    }

}

/*guideList*/
.guideList {
    column-gap: 25px;
    row-gap: 48px;
}

.guideList .box {
    width: calc(100% / 3 - 16.7px);
}

.guideList .box .img {
    position: relative;
    overflow: hidden;
    max-height: 190px;
    height: 17vw;
    margin-bottom: 10px;
}

.guideList .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.guideList .box:hover .img img {
    transform: scale(1.15789474);
}

.guideList .box .category {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.eventList {
    margin-bottom: 6px;
}

.eventList .date {
    position: relative;
    color: #666666;
    padding-right: 24px;
    width: 105px;
}

.eventList .date::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 11px;
    height: 14px;
    width: 1px;
    background-color: #2672AA;
}

.eventList .date1::before {
    display: none;
}

.eventList .member {
    color: #666666;
    width: calc(100% - 105px);
}

.guideList .box .title {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 10px;
}

.guideList .box .more {
    text-align: right;
}

.guideList .box:hover .title {
    text-decoration: none;
}

.worriesTop .guideList .box .title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

@media screen and (max-width: 799px){

    .guideList {
        row-gap: 29px;
    }

    .guideList .box {
        width: 100%;
    }

    .guideList .box .img {
        max-height: 308px;
        min-height: 171px;
        height: 45.6vw;
    }

    .guideList .box .title {
        margin-bottom: 14px;
    }

}

@media screen and (max-width: 599px){

    .guideList .box .img {
        margin-bottom: 11px;
    }

}

/*guideTop*/
.worriesTop {
    position: relative;
    padding: 94px 0 92px 0;
    background: url(../img/top/worries-top-bg.png) no-repeat center bottom;
    background-size: 1920px;
    z-index: 1;
}

.worriesTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #2672AA;
    z-index: -1;
}

.worriesTop .topTitle {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}

.worriesTop .topTitle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 386px;
    height: 139px;
    border-radius: 100%;
    background-color: #155583;
    filter: blur(39px);
}

.worriesTop .topTitle .topTitleInner {
    position: relative;
}

.worriesTop .cm {
    position: relative;
    text-align: center;
    margin: 32px 0 54px 0;
    color: #fff;
}

@media screen and (min-width: 1920px){

    .worriesTop {
        background: url(../img/top/worries-top-bg.png) no-repeat center bottom;
        background-size: 100% auto;
    }

}

@media screen and (max-width: 799px){

    .worriesTop {
        background-image: url(../img/top/worries-top-bg-sp.png);
        background-size: 800px;
    }

}

@media screen and (max-width: 599px){

    .worriesTop {
        padding: 53px 14px 117px 14px;
    }

    .worriesTop .topTitle {
        font-size: 28px;
    }

    .worriesTop .topTitle::before {
        width: 343px;
        height: 115px;
        filter: blur(20px);
    }

    .worriesTop .topTitle .topTitleInner {
        position: relative;
    }

    .worriesTop .cm {
        text-align: left;
        margin: 21px 0 28px 0;
    }

}

/*solutionTop*/
.solutionTop {
    position: relative;
    background: linear-gradient(to top right, #F2F9FD, #D8EEFD);
    padding: min(165px,11.785714285714285vw) 0 95px 0;
    margin-top: -5vw;
}

.solutionTop::before {
    content: "";
    position: absolute;
    top: 3.571428571428571vw;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 100%;
    height: 32vw;
    max-height: 448px;
    min-height: 214px;
    max-width: 1400px;
    background: url(../img/top/solution-illust.png) no-repeat center right;
    background-size: auto 100%;
}

.solutionTop .top {
    position: relative;
    margin-bottom: 73px;
}

.solutionTop .top .img {
    position: relative;
    width: 50%;
    padding: 0 39px 24px 0;
}

.solutionTop .top .img::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 17px;
    width: 169px;
    height: 169px;
    background-color: #A8C9E2;
}

.solutionTop .top .img img {
    position: relative;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.solutionTop .top .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    padding-left: min(590px,50%);
}

.solutionTop .top .text .title {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: #0D4974;
    margin-bottom: 32px;
}

.solutionTop .top .text .title .large {
    font-size: 36px;
}

@media screen and (max-width: 799px){

    .solutionTop {
        padding-top: 21.333333333333336vw;
        margin-top: -8vw;
    }

    .solutionTop::before {
        top: 14.933333333333335vw;
    }

    .solutionTop .top .img {
        width: calc(100% - 64px);
        padding: 0 14px 15px 0;
        margin: 0 auto;
    }

    .solutionTop .top .img::before {
        right: 0;
    }

    .solutionTop .top .img img {
        height: 56.266666666666666vw;
        min-height: 211px;
        max-height: 420px;
    }

    .solutionTop .top .text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px auto;
        padding: 0 14px;
    }

}

@media screen and (max-width: 599px){

    .solutionTop {
        padding-bottom: 75px;
    }

    .solutionTop .top {
        margin-bottom: 45px;
    }

    .solutionTop .top .img {
        width: calc(100% - 32px);
    }

    .solutionTop .top .img::before {
        width: 85px;
        height: 85px;
    }

    .solutionTop .top .text .title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .solutionTop .top .text .title .large {
        font-size: 26px;
    }

}

/*solutionTop_bottom*/
.solutionTop .bottom {
    column-gap: 40px;
    row-gap: 32px;
}

.solutionTop .bottom .box {
    position: relative;
    width: calc(50% - 20px);
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(3,30,49,.12);
}

.solutionTop .bottom .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88.5px;
    height: 88.5px;
    background: linear-gradient(135deg, rgba(255,255,255,0) 70%, #44AEDD 100%);
}

.solutionTop .bottom .box .tab {
    position: absolute;
    top: 0;
    left: 19px;
    height: 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 0 0 5px 5px;
    color: #fff;
    line-height: 40px;
    z-index: 2;
}

.solutionTop .bottom .box1 .tab {
    width: 157px;
    padding-left: 29px;
    background: url(../img/top/tab1.svg) no-repeat center left 9px;
    background-size: 15px;
    background-color: #6FCECA;
}

.solutionTop .bottom .box2 .tab {
    width: 170px;
    padding-left: 39px;
    background: url(../img/top/tab2.svg) no-repeat center left 12px;
    background-size: 23px;
    background-color: #ED0B0B;
}

.solutionTop .bottom .box .img {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.solutionTop .bottom .box .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    opacity: .2;
    transition: .2s;
    z-index: 1;
}

.solutionTop .bottom .box:hover .img::before {
    opacity: .4;
}

.solutionTop .bottom .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}

.solutionTop .bottom .box:hover .img img {
    transform: scale(1.0528);
}

.solutionTop .bottom .box .text {
    position: relative;
    padding: 24px 32px 27px 24px;
}

.solutionTop .bottom .box .text .title {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: min(28px,3.4vw);
    font-weight: 700;
    line-height: 1.4;
    padding-left: 22px;
    margin-bottom: 16px;
}

.solutionTop .bottom .box .text .title::before,
.solutionTop .bottom .box .text .title::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    height: 14px;
}

.solutionTop .bottom .box .text .title::before {
    width: 14px;
    background-color: #0A3A5D;
}

.solutionTop .bottom .box .text .title::after {
    width: 6.5px;
    background-color: #2672AA;
}

.solutionTop .bottom .box .text .cm {
    margin-bottom: 27px;
}

@media screen and (max-width: 799px){

    .solutionTop .bottom {
        padding: 0 14px;
    }

    .solutionTop .bottom .box {
        width: 100%;
    }

    .solutionTop .bottom .box .tab {
        left: 15px;
        height: 32px;
        font-size: 13px;
        line-height: 32px;
    }

    .solutionTop .bottom .box1 .tab {
        width: 130px;
        background-position: center left 10px;
        background-size: 13px;
    }

    .solutionTop .bottom .box2 .tab {
        width: 130px;
        padding-left: 29px;
        background-position: center left 7px;
        background-size: 19px;
    }

    .solutionTop .bottom .box .text .title {
        font-size: 28px;
    }

    .solutionTop .bottom .box .text .cm {
        margin-bottom: 10px;
    }

}

@media screen and (max-width: 599px){

    .solutionTop .bottom .box::before {
        width: 72px;
        height: 72px;
    }

    .solutionTop .bottom .box .img {
        height: 42.66666666666667vw;
        min-height: 160px;
    }

    .solutionTop .bottom .box .text {
        padding: 18px 23px 28px 18px;
    }

    .solutionTop .bottom .box .text .title {
        font-size: 22px;
        padding-left: 17px;
    }

    .solutionTop .bottom .box .text .title::before,
    .solutionTop .bottom .box .text .title::after {
        top: 11px;
        height: 11px;
    }

    .solutionTop .bottom .box .text .title::before {
        width: 11px;
    }

    .solutionTop .bottom .box .text .title::after {
        width: 3.5px;
    }

}

/*picUpTop*/
.picUpTop {
    position: relative;
}

.picUpTopInner {
    max-width: 1192px;
}

@media screen and (max-width: 1259px){

    .picUpTopInner {
        max-width: 888px;
    }

}

@media screen and (max-width: 949px){

    .picUpTopInner {
        max-width: 584px;
    }

}

@media screen and (max-width: 799px){

    .picUpTop .picUpTopSwiper {
        margin: 0;
    }

    .picUpTopSwiper .box .img {
        height: 160px;
    }

}

@media screen and (max-width: 599px){

    .picUpTop .sectionTitle {
        margin-bottom: 80px;
    }

}

@media screen and (max-width: 649px){

    .picUpTopInner {
        max-width: 280px;
    }

}

/*eventTop*/
@media screen and (min-width: 600px){

    .eventTop .modBtn1 {
        margin-top: 48px;
    }

}

@media screen and (max-width: 599px){

    .eventTop {
        padding: 0 14px;
    }

}

/*fileTop*/
.fileTop {
    overflow: hidden;
}

.fileTop .fileSwiper {
    position: relative;
    padding-bottom: 50px;
}

.fileTop .fileSwiper .swiper-pagination {
    bottom: 0;
}

@media screen and (max-width: 799px){

    .fileTop {
        width: 100%;
        max-width: 264px;
        overflow: visible;
    }

}

/*featureTop*/
.featureTop {
    position: relative;
    padding-top: 59px;
    margin-bottom: 99px;
}

.featureTopInner {
    max-width: 904px;
}

.featureTop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: linear-gradient(to top right, #F2F9FD, #D8EEFD);
    z-index: -1;
}

.featureTop .sectionTitle {
    margin-bottom: 48px;
}

@media screen and (max-width: 969px){

    .featureTopInner {
        max-width: 280px;
    }

}

@media screen and (max-width: 599px){

    .featureTop {
        padding-top: 48px;
        margin-bottom: 80px;
    }

    .featureTop::before {
        height: 314px;
    }

    .featureTop .sectionTitle {
        margin-bottom: 72px;
    }

}

/*pagination*/
.pagination {
    margin-top: 72px;
}

.pagination .flex {
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}

.pagination .button a {
    width: 8.48px;
    height: 16.97px;
    margin: 0 auto;
    transition: .2s;
}

.pagination .button.prev a {
    background: url(../img/common/pagination-prev.svg) no-repeat center;
    background-size: 100% auto;
}

.pagination .button.prev a:hover {
    background-image: url(../img/common/pagination-prev-hover.svg);
}

.pagination .button.next a {
    background: url(../img/common/pagination-next.svg) no-repeat center;
    background-size: 100% auto;
}

.pagination .button.next a:hover {
    background-image: url(../img/common/pagination-next-hover.svg);
}

.pagination .num a {
    font-weight: 400;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #CCCCCC;
    padding-top: 4px;
    color: #333;
    transition: .2s;
}

.pagination .num a:hover {
    background: #FF6C00;
    border: 2px solid #FF6C00;
    color: #fff;
}

@media screen and (max-width: 599px){

    .main.page .pagination {
        width: 100%;
        margin-top: 32px;
        max-width: 240px;
    }

    .pagination .button {
        width: 100%;
    }

}

/*newsList*/
.newsList a {
    position: relative;
    padding: 19px 13px;
    transition: .2s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 9px;
    border-bottom: 1px solid #CCCCCC;
}

.pageMembersOnly .newsList a {
    padding: 20px 0;
}

.newsList a:first-child {
    padding-top: 0;
}

.newsList .date {
    font-weight: 600;
    color: #666666;
    margin-right: 16px;
}

.newsList .category {
    font-size: 13px;
    font-weight: 600;
    color: #2672AA;
    background-color: #BEE1FC;
    margin-right: 16px;
    display: inline-block;
    padding: 0 8px;
    line-height: 23px;
    height: 23px;
    border-radius: 2px;
    text-align: center;
}

.newsList .category.member {
    color: #B90C0C;
    background-color: #FFE6E6;
}

.newsList .title {
    font-size: 16px;
    font-weight: 500;
    transition: .2s;
    background: url(../img/common/icon-right-blue2.svg) no-repeat  center right;
    background-size: 16px;
    padding-right: 24px;
    width: 100%;
}

.newsList a:hover .title {
    color: #2672AA;
    background-image: url(../img/common/icon-right-blue.svg);
}

@media screen and (max-width: 599px){

    .newsList a {
        padding: 21px 14px;
    }

    .pageNews .newsList a {
        padding: 21px 0;
    }

}

/*newsTop*/
.newsTop {
    position: relative;
    padding: 96px 0 245px 0;
    background: linear-gradient(to top left, #F2F9FD, #D8EEFD);
}

.newsTop::before {
    content: "";
    position: absolute;
    bottom: 108px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    height: 27.040714285714284vw;
    max-height: 378.57px;
    width: 122.71428571428571vw;
    max-width: 1718px;
    background: url(../img/top/top-news-bg.png) no-repeat center left;
    background-size: auto 100%;
}

.newsTop .newsTopInner {
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
}
.newsTop .newsTopInner .left {
    width: 230px;
}

.newsTop .newsTopInner .right {
    width: calc(100% - 270px);
    max-width: 720px;
}

.newsTop .newsTopInner .modBtn2 {
    position: absolute;
    top: 124px;
    left: 0;
    margin-top: 0;
}

@media screen and (min-width: 800px){

    .newsTop .sectionTitle {
        text-align: left;
    }

    .newsTop .sectionTitle::before {
        left: 0;
        transform: none;
        margin: 0;
    }

    .newsTop .sectionTitle::after {
        left: 20px;
        transform: none;
        margin: 0;
    }

}

@media screen and (max-width: 799px){

    .newsTop::before {
        display: none;
    }

    .newsTop .newsTopInner .left {
        width: 100%;
    }

    .newsTop .newsTopInner .right {
        width: 100%;
        max-width: 100%;
    }

    .newsTop .newsTopInner .modBtn2 {
        position: relative;
        top: auto;
        left: auto;
        margin: 40px auto 0 auto;
    }

    .newsTop .newsList a:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

}

@media screen and (max-width: 599px){

    .newsTop {
        padding: 65px 0 210px 0;
    }

}

/*pageNews*/
.pageNews .newsFlex {
    column-gap: min(80px,5.714285714285714vw);
    row-gap: 21px;
}

.pageNews .newsFlex .newsSide {
    width: 240px;
}

.pageNews .newsFlex .newsSide .title {
    margin-bottom: 21px;
    padding-left: 4px;
}

.pageNews .newsFlex .newsSide .title .en {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 2;
    color: #0D4974;
    display: inline-block;
    padding-right: 8px;
}

.pageNews .newsFlex .newsSide .title .en::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 1px;
    width: 1px;
    height: 19px;
    background-color: #CCCCCC;
}

.pageNews .newsFlex .newsSide .title .ja {
    font-size: 13px;
    font-weight: 500;
    color: #0D4974;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 7px;
}

.newsTab li a {
    font-size: 15px;
    padding: 10px 12px;
    border-bottom: 1px solid #CCCCCC;
    transition: .2s;
    cursor: pointer;
}

.newsTab li:first-child a {
    border-top: 1px solid #CCCCCC;
}

.newsTab li .current,
.newsTab li a:hover {
    background-color: #F2F2F2;
}

.pageNews .newsFlex .newsList {
    width: calc(100% - 240px - min(80px,5.714285714285714vw));
}

@media screen and (max-width: 799px){

    .pageNews .newsFlex .newsSide {
        width: 100%;
    }

    .pageNews .newsFlex .newsSide .title {
        margin-bottom: 10px;
        padding-left: 0;
    }

    .newsTab {
        display: flex;
        flex-wrap: wrap;
        column-gap: 6px;
        row-gap: 6px;
        order: 1;
    }
    
    .newsTab li {
        width: calc(50% - 3px);
    }

    .newsTab li a {
        border: 1px solid #CCCCCC;
    }

    .pageNews .newsFlex .newsList {
        width: 100%;
        order: 2;
    }

}

/*privacySection*/
.privacySection .h2 {
    margin-bottom: 37px;
}

.privacySection .h3 {
    margin-top: 28px;
}

.privacySection .list {
    margin-top: 20px;
}

@media screen and (max-width: 599px){

    .privacySection .h2 {
        margin-bottom: 32px;
    }

    .privacySection .list {
        margin-top: 10px;
    }

}

/*form*/
.form {
    max-width: 964px;
    margin: 0 auto;
}

.form .box {
    margin-bottom: 19px;
    align-items: center;
}

.form .box9 {
    align-items: flex-start;
}

.form .box label {
    width: 304px;
    font-size: 18px;
    font-weight: 700;
    padding-right: 10px;
}

.form .box label .red {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    width: 40px;
    height: 21px;
    line-height: 21px;
    border-radius: 2px;
    background-color: #F4F4F4;
    color: #DB2356;
    display: inline-block;
    margin: 7px 0 0 8px;
    vertical-align: top;
}

.form .box input,
.form .box textarea,
.form .box select {
    -webkit-appearance: none;
    appearance: none;
    width: calc(100% - 304px);
    border: 1px solid #7C7C7C;
    padding: 10px 20px;
    font-weight: 400;
}

.form input::placeholder {
    font-size: 16px;
    color: #666; /* 好きな色に変更 */
    opacity: 1; /* 透明度を確保 */
}
  
.form select option:first-child {
    color: #666; /* 好きな色に変更 */
}
  
.form select {
    color: #666; /* 通常の選択肢の色 */
}
  
.form .box textarea {
    min-height: 180px;
}

.form .box2 input {
    max-width: 300px;
}

.form .box3 select {
    max-width: 340px;
    background: url(../img/contact/arrow.jpg) no-repeat top right;
    background-size: auto 100%;
    appearance: none;
    cursor: pointer;
}

.form .img {
    margin: 48px auto;
    text-align: center;
    font-weight: 400;
}

.form .img img {
    width: 210px;
    margin: 0 auto 5px auto;
}

.form .img input {
    width: 220px;
    border: 1px solid #7C7C7C;
    padding: 9px;
    margin-bottom: 5px;
}

.form .policy {
    margin: 48px 0 64px;
    text-align: center;
}

.form .policy .scroll {
    max-width: 509px;
    height: 228px;
    overflow-y: scroll;
    margin: 0 auto 16px auto;
    border: 1px solid #808080;
    padding: 17px 37px 19px 34px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}
  
.form .policy input[type="checkbox"] {
    display: none;
}

.form .policy label {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    font-weight: 400;
}
  
.form .policy .check-icon {
    width: 20px;
    height: 20px;
    background: url(../img/contact/check-no.jpg) no-repeat center left;
    background-size: auto 100%;
    margin-right: 10px;
}
  
.form .policy input[type="checkbox"]:checked + .check-icon {
    background: url(../img/contact/check.jpg) no-repeat center left;
    background-size: auto 100%;
}

/*policy*/
.policy .title {
    font-size: 18px;
}

/*formBtn*/
.formBtn {
    column-gap: 24px;
    row-gap: 16px;
    justify-content: center;
}

.formBtn .returnBtn,
.formBtn .modBtn1 {
    margin: 0;
}

.formBtn .modBtn1 .btnInner {
    padding: 0;
}

@media screen and (max-width: 1023px){

    .form .box {
        margin-bottom: 16px;
    }

    .form .box label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .form .box input,
    .form .box textarea,
    .form .box select {
        width: 100%;
        padding: 9px 18px;
    }

    .form .box2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-self: flex-start;
        align-items: flex-start;
    }
    
    .form .box2 input,
    .form .box3 select {
        max-width: 100%;
    }
    
    .form .policy {
        margin: 40px 0 48px;
    }
    
    .form .policy .scroll {
        max-width: 100%;
        height: 250px;
        padding: 15px 35px 15px 16px;
        margin: 0 auto 13px auto;
    }

}

@media screen and (max-width: 699px){
    
    /*formBtn*/
    .formBtn {
        align-items: center;
        flex-direction: column;
    }

    .formBtn .modBtn1 {
        order: 1;
    }

    .formBtn .returnBtn {
        order: 2;
    }

}

@media screen and (max-width: 599px){
    
    .form {
        margin-top: 68px;
    }

    .form .img {
        margin: 37px auto;
    }

    .form .policy {
        margin: 37px 0 44px;
    }

}

/*pageLogin*/
.pageLogin {
    max-width: 660px;
    padding: 41px 28px;
    background-color: #F2F2F2; 
}

.pageLogin .title {
    font-size: 25px;
    font-weight: 700;
    color: #0D4974;
    text-align: center;
    margin-bottom: 22px;
}

.pageLogin .box {
    border: none;
    padding: 0;
    max-width: 480px;
    margin: 0 auto 14px auto;
}

.pageLogin .box label {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.pageLogin .box input {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 9px 15px;
    outline: none;
}

.pageLogin .box input:focus {
    border: 1px solid #2672AA;
    border-radius: 3px;
}

@media screen and (max-width: 599px){

    .pageLogin {
        padding: 34px 28px;
    }

}

/*builderBtnList*/
ul.builderBtnList {
    column-gap: 13px;
    row-gap: 13px;
    margin-bottom: 48px;
}

.builderBtnList li {
    width: calc(100% / 5 - 10.4px);
}

.builderBtnList li a {
    text-align: center;
    color: #fff;
    background-color: #0D4974;
    border: 1px solid #0D4974;
    padding: 9px 5px;
    border-radius: 2px;
    transition: .2s;
}

.builderBtnList li a:hover {
    background-color: #fff;
    border: 1px solid #2672AA;
    color: #2672AA;
}

@media screen and (max-width: 599px){

    ul.builderBtnList {
        column-gap: 8px;
        row-gap: 8px;
        margin-bottom: 44px;
    }

    .builderBtnList li {
        width: calc(100% / 3 - 5.4px);
    }

    .builderBtnList li a {
        padding: 5px;
    }

}

/*pageSingle*/
.pageSingle .topTitle {
    margin-top: 16px;
}

.pageSingle .mainImg {
    max-width: 780px;
    max-height: 422px;
    height: 50vw;
    margin: 0 auto 56px auto;
}

.pageSingle .mainImg2 {
    max-height: auto;
    height: auto;
    max-width: 648px;
    column-gap: 48px;
    row-gap: 16px;
    margin: 0 auto 48px auto;
    justify-content: center;
}

.pageSingle .mainImg2 .img {
    width: calc(50% - 24px);
}

.pageSingle .mainImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageSingle .table {
    margin: 45px 0;
}

.pageSingle .mb {
    margin-bottom: 21px;
}

.pageBuilderSingle .mb {
    margin-bottom: 64px;
}

.pageBuilderSingle .h4,
.pageBuilderSingle .table {
    margin-top: 32px;
}

@media screen and (max-width: 599px){

    .pageSingle .eventList .date,
    .pageSingle .eventList .member {
        font-size: 14px;
    }

    .pageSingle .eventList .date {
        width: 96px;
    }

    .pageSingle .eventList .date::before {
        top: 6px;
    }

    .pageSingle .topTitle {
        margin-top: 12px;
    }

    .pageSingle .mainImg {
        max-width: 780px;
        max-height: 422px;
        min-height: 171px;
        height: 45.6vw;
        margin: 0 auto 29px auto;
    }

    .pageSingle .mainImg2 {
        max-width: 300px;
        max-height: 100%;
        min-height: 100%;
        height: auto;
        margin: 0 auto 29px auto;
    }

    .pageSingle .mainImg2 .img {
        width: 100%;
    }

    .pageBuilderSingle .mb {
        margin-bottom: 44px;
    }

    .pageBuilderSingle .table {
        margin-top: 24px;
    }

}

/*galleryList*/
.galleryList {
    row-gap: 34px;
    column-gap: 34px;
}

.galleryList li {
    width: calc(100% / 3 - 22.7px);
    max-height: 230px;
    height: 20vw;
}

.galleryList li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 799px){

    .galleryList li {
        width: calc(100% / 2 - 17px);
        height: 29vw;
    }

}

@media screen and (max-width: 599px){

    .galleryList {
        row-gap: 16px;
    }

    .galleryList li {
        width: 100%;
        min-height: 211px;
        max-height: 100%;
        height: 56vw;
    }

}

/*infoList*/
ul.infoList {
    row-gap: 24px;
    column-gap: 19px;
    margin: 40px 0 96px 0;
}

.infoList li {
    width: calc(100% / 5 - 15.2px);
}

.infoList li img {
    margin: 0 auto;
}

.infoList li p {
    margin-top: 7px;
    text-align: center;
}

@media screen and (min-width: 800px){

    .infoList li p {
        font-size: min(16px,1.8vw);
    }
    
}

@media screen and (max-width: 799px){

    .infoList li {
        width: calc(100% / 3 - 12.7px);
    }

}

@media screen and (max-width: 599px){

    ul.infoList {
        column-gap: 15px;
        margin: 29px 0 64px 0;
    }

    .infoList li {
        width: calc(50% - 7.5px);
    }

}

/*meritList*/
ul.meritList {
    row-gap: 32px;
    column-gap: 40px;
    margin-bottom: 72px;
}

.meritList li {
    width: calc(50% - 20px);
    border: 7px solid #C1E4FD;
    padding: 23px;
}

.meritList li .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #0D4974;
    margin-bottom: 16px;
}

@media screen and (max-width: 799px){

    .meritList li {
        width: 100%;
    }

}

@media screen and (max-width: 599px){

    ul.meritList {
        row-gap: 16px;
        margin-bottom: 40px;
    }

    .meritList li {
        padding: 16px 14px;
    }

    .meritList li .title {
        font-size: 18px;
        margin-bottom: 12px;
    }

}

/*btnList*/
.pageMemberInfo ul.btnList {
    max-width: 888px;
    margin: 0 auto;
    column-gap: 48px;
    row-gap: 17px;
    justify-content: center;
}

.pageMemberInfo ul.btnList li {
    width: calc(50% - 24px);
}

@media screen and (max-width: 799px){

    .pageMemberInfo ul.btnList li {
        width: 100%;
    }

}

/*pageAchivement*/
.pageAchivement .h2 {
    margin-top: 48px;
}

.pageAchivement .h4 {
    margin-top: 32px;
}

.pageAchivement .mb {
    margin-bottom: 60px;
}

.pageAchivement .banner {
    display: inline-block;
    margin-top: 32px;
    transition: .2s;
}

.pageAchivement .banner:hover {
    opacity: .7;
}

@media screen and (max-width: 599px){

    .pageAchivement .mb {
        margin-bottom: 44px;
    }

    .pageAchivement .banner {
        margin-top: 24px;
    }

}

/*guideTab*/
ul.guideTab {
    column-gap: 10px;
    margin: 56px 0;
    border-bottom: 1px solid #CCCCCC;
}

.guideTab li {
    width: calc(100% / 3 - 7px);
    max-width: 210px;
    background-color: #F2EFEF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .2s;
    border-radius: 6px 6px 0 0;
}

.guideTab li a {
    line-height: 1.4;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.guideTab li:has(a.current),
.guideTab li:has(a:hover) {
    background-color: #0D4974;
}

.guideTab li a.current,
.guideTab li a:hover {
    color: #fff;
}

@media screen and (max-width: 599px){

    ul.guideTab {
        column-gap: 0;
        margin: 40px 0 32px 0;
        border-bottom: none;
    }

    .guideTab li {
        width: calc(100% / 3);
        border-radius: 0;
    }

    .guideTab li:nth-child(2) {
        border-left: 1px solid #CCCCCC;
        border-right: 1px solid #CCCCCC;
    }

    .guideTab li a {
        font-size: 13px;
        padding: 6px;
    }

}

/*pageGuideSingle*/
.pageGuideSingle .list,
.pageGuideSingle .listNum {
    margin: 24px 0;
}

ul.imgFlex {
    column-gap: 60px;
    row-gap: 24px;
    margin-top: 32px;
}

.imgFlex li {
    width: calc(50% - 30px);
}

.imgFlex li img {
    margin: 0 auto;
}

.pageGuideSingle .mb {
    margin-bottom: 64px;
}

.pageGuideSingle .modBtn1 {
    max-width: 336px;
    margin-top: 24px;
}

.pageGuideSingle .ti {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #0D4974;
    margin-bottom: 32px;
}

@media screen and (max-width: 599px){

    .imgFlex li {
        width: 100%;
    }

    .pageGuideSingle .mb {
        margin-bottom: 48px;
    }

    .pageGuideSingle .modBtn1 {
        max-width: 300px;
        margin-top: 32px;
    }

    .pageGuideSingle .ti {
        font-size: 24px;
        margin-bottom: 24px;
    }

}

/*pageAbout*/
.pageAbout .mb {
    margin-bottom: 96px;
}

.pageAbout .section1 {
    text-align: center;
    margin-bottom: 48px;
}

.pageAbout .section1 .ti {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    color: #0D4974;
    margin-bottom: 40px;
}

.pageAbout .topImg {
    padding: 30px 0;
    background-image: repeating-linear-gradient(0deg, #ffffff, #d8f1ff 50%, #ffffff);
}

.pageAbout .topImg ul.topImgList {
    max-width: 1084px;
    row-gap: 17px;
    justify-content: space-between;
}

.pageAbout .topImg ul.topImgList li:nth-child(1) {
    width: 37.63%;
}

.pageAbout .topImg ul.topImgList li:nth-child(2) {
    width: 31.36%;
    margin-top: 70px;
}

.pageAbout .topImg ul.topImgList li:nth-child(3) {
    width: 22.14%;
}

.pageAbout .section2 {
    background-image: linear-gradient(0deg, #d8f1ff, #ffffff 70% 100%);
    padding-bottom: 91px;
}

.pageAbout .bgBox {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(3,30,49,.12);
    padding: 48px 50px;
    justify-content: space-between;
    row-gap: 32px;
}

.pageAbout .bgBox1 {
    margin-top: 64px;
    margin-bottom: 48px;
}

.pageAbout .bgBox .img {
    width: 33.3333333%;
}

.pageAbout .bgBox .text {
    width: 62.745098%;
}

.pageAbout .bgBox .text .title {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #0D4974;
    margin-bottom: 24px;
}

@media screen and (max-width: 799px){

    .pageAbout .bgBox .img {
        width: 100%;
    }

    .pageAbout .bgBox .text {
        width: 100%;
    }

}

@media screen and (max-width: 699px){

    .pageAbout .section1 p {
        text-align: left;
    }

}

@media screen and (max-width: 599px){

    .pageAbout .mb {
        margin-bottom: 64px;
    }

    .pageAbout .section1 {
        margin-bottom: 32px;
    }

    .pageAbout .section1 .ti {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .pageAbout .topImg {
        padding: 17px 0;
        margin-bottom: 32px;
    }

    .pageAbout .topImg ul.topImgList li:nth-child(1) {
        width: 58.6005831%;
        order: 1;
    }

    .pageAbout .topImg ul.topImgList li:nth-child(2) {
        width: 77%;
        margin: 0 auto;
        order: 3;
        padding-left: 29%;
    }

    .pageAbout .topImg ul.topImgList li:nth-child(3) {
        width: 34.4023324%;
        order: 2;
    }

    .pageAbout .section2 {
        background-image: linear-gradient(0deg, #d8f1ff, #ffffff 100%);
        padding-bottom: 67px;
    }

    .pageAbout .bgBox {
        padding: 24px 20px;
    }

    .pageAbout .bgBox1 {
        margin-top: 40px;
        margin-bottom: 32px;
    }

    .pageAbout .bgBox .text .title {
        margin-bottom: 16px;
    }

}

/*anchorList*/
ul.anchorList {
    column-gap: 32px;
    row-gap: 12px;
    justify-content: center;
    margin-bottom: 72px;
}

.anchorList li {
    width: calc(100% / 3 - 22px);
}

@media screen and (max-width: 599px){

    ul.anchorList {
        margin-bottom: 48px;
    }

    .anchorList li {
        width: 100%;
        max-width: 100%;
    }

}

/*greetingBox*/
.greetingBox {
    justify-content: space-between;
    row-gap: 49px;
}

.greetingBox .img {
    width: 25.4545455%;
}

.greetingBox .text {
    width: 70.0909091%;
}

.greetingBox .text .name {
    margin-top: 32px;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
}

.greetingBox .text .name .kt {
    font-size: 16px;
}

@media screen and (max-width: 799px){

    .greetingBox .img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .greetingBox .text {
        width: 100%;
    }

}

@media screen and (max-width: 599px){

    .greetingBox .text .name {
        margin-top: 16px;
    }

}

/*philosophy*/
#philosophy {
    padding: 96px 0;
    background-color: #ECF3F8;
}

.philosophyBox {
    row-gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
}

.philosophyBox .title {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    color: #0D4974;
    width: 45%;
}

.philosophyBox .cm {
    width: 50%;
}

.philosophyList {
    column-gap: 27px;
    row-gap: 24px;
}

.philosophyList li {
    width: calc(100% / 4 - 20.3px);
}

.philosophyList li img {
    margin-bottom: 16px;
}

@media screen and (max-width: 799px){

    .philosophyBox .title {
        width: 100%;
    }

    .philosophyBox .cm {
        width: 100%;
    }

    .philosophyList {
        column-gap: 27px;
        row-gap: 24px;
    }

    .philosophyList li {
        width: calc(100% / 2 - 13.5px);
    }

}

@media screen and (max-width: 599px){

    #philosophy {
        padding: 64px 0;
    }

    .philosophyBox {
        margin-bottom: 40px;
    }

    .philosophyBox .title {
        font-size: 23px;
    }

    .philosophyList li {
        width: 100%;
    }

}

/*history*/
ul.historyList {
    margin-top: 48px;
}

.historyList li {
    position: relative;
    padding: 0 0 25px 43px;
}

.historyList li:last-child {
    padding-bottom: 0;
}

.historyList li::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 11px;
    width: 1px;
    height: 100%;
    background-color: #CCCCCC;
}

.historyList li:last-child:before {
    display: none;
}

.historyList li .year {
    position: relative;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.historyList li .year::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -42px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #0D4974;
}

.historyList li .year::after {
    content: "";
    position: absolute;
    top: 17px;
    left: -38px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-image: linear-gradient(0deg, #0d4974, #53a6e3);
}

.historyList li .year .large {
    font-size: 24px;
}

.historyList li .title {
    font-size: 16px;
    font-weight: 500;
}

.message {
    background-color: #ECF3F8;
    border-radius: 15px;
    padding: 48px 43px;
    margin-bottom: 72px;
}

@media screen and (max-width: 599px){

    ul.historyList {
        margin-top: 40px;
    }

    .message {
        padding: 32px 23px;
        margin-bottom: 48px;
    }

}

/*membersMenu*/
.membersMenu {
    column-gap: 40px;
    row-gap: 40px;
}

.membersMenu li {
    width: calc(50% - 20px);
    max-width: 100%;
    margin: 0;
}

@media screen and (max-width: 599px){

    .membersMenu {
        row-gap: 24px;
        justify-content: center;
    }

    .membersMenu li {
        width: 100%;
        max-width: 300px;
    }

}

body.front {
    margin-top: 0 !important;
}