@charset "UTF-8";

/* 共通部分
------------------------------- */

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    color: #333333;
}

@media screen and (min-width:768px){
    body {
        min-width: 1000px;
    }
}


/* ロゴマーク
------------------------------- */

.logo {
    display: flex;
	vertical-align: middle;
    font-weight: bold;
    /* margin-bottom: 30px; */
}

.logo img {
    margin-right: 15px;
}

.logo p {
    font-size: 1.6rem;
    white-space: nowrap;
}

.logo p span {
    color: #1DCB75;
    font-family: din-2014-narrow, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.4rem;
    padding-left: 0.5em;
}

.logo .member{
    font-family: din-2014-narrow, sans-serif;
    color: #E3832F;
    font-size: 18px;
    padding-left: 40px;
    position: relative;
}

.logo .member:before{
    content: '';
    position: absolute;
    display: inline-block;
    background-color: #E3832F;
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

@media screen and (max-width:768px){
    .logo .member{
        font-size: 14px;
        padding-left: 22px;
    }
    .logo .member:before{
        width: 10px;
        left: 6px;
    }
}

/* 見出し
------------------------------- */

.h1_title {
    font-size: 2.8rem;
    font-weight: bold;
    font-style: normal;
    position: relative;
    display: inline-block;  
    margin-top: -7px;
    letter-spacing: 0.05em;
    /* color: #101010; */
    color: #ffffff;
}

/* .h1_title:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 40px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #1DCB75;   
} */

h2 {
    color: #1DCB75;
    font-size: 2.0rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: 10px;*/
    /*margin-bottom: 30px;*/
    text-align: center;
    margin-top: 30px;
    line-height: 1.7em;
}

@media screen and (min-width:375px){
    /* .h1_title {
        font-size: 4.0rem;
    } */
    h2 {
        font-size: 2.2rem;
    }
}
    
@media screen and (min-width:768px){
    .h1_title {
        /* font-size: 3.8rem; */
        font-size: 3.4rem;
    }
    h2 {
        font-size: 3.6rem;
    }
}

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

/* グローバルナビゲーション
------------------------------- */

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 3;
    /*ナビのスタート位置と形状*/
	/* top:0;
    left: -120%; */

    top: 0;
    left: -120%;

	width:100%;
	background:#ffffff;
    /*動き*/
	transition: all 0.5s;
    /* height: 70px; */

    box-shadow: 0 10px 25px 0 rgb(0 0 0 / 15%);

}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
    left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    /* position: fixed; */
    /* z-index: 999;  */
    /* z-index: 5; */
    width:100%;
    /*height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* box-shadow: 0 10px 25px 0 rgb(0 0 0 / 15%); */
}

#g-nav .logo {
    /* margin-top: 20px; */
    z-index: 10;

    margin-left: 20px;

    height: 70px;
    display: flex;
    align-items: center;
}

/*ナビゲーション*/
#g-nav ul {
    /* padding: 0 20px 20px 20px; */
    padding: 0 20px 0 20px;
    background:#ffffff;
}

/*リストのレイアウト設定*/
#g-nav li {
	list-style: none;
    text-align: left;
    border-bottom: 1px solid #CCCCCC;
    position: relative;
}

#g-nav li:last-child {
    border: none;
}

#g-nav li a {
    font-size: 1.6rem;
    font-weight: bold;
	color: #101010;
	text-decoration: none;
    padding: 24px 50px 24px 10px;
	/* padding:8px; */
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-transform:none;
}

#g-nav li a:hover {
    color: #1DCB75;
}

#g-nav li::after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40%;
    right: 20px;
    color: #1DCB75;
}

/* ハンバーガーボタン */

.hamburger_btn {
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:14px;
	right: 5px;
	cursor: pointer;
    width: 50px;
    height:50px;
}

/* ハンバーガーボタンを×に変化 */

.hamburger_btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 14px;
    height: 3px;
	background-color: #1DCB75;
}

.hamburger_btn span:nth-of-type(1) {
	top:15px;
    width: 50%;
}

.hamburger_btn span:nth-of-type(2) {
	top:23px;
    width: 45%;
}

.hamburger_btn span:nth-of-type(3) {
	top:31px;
    width: 35%;
}

.hamburger_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.hamburger_btn.active span:nth-of-type(2) {
	opacity: 0;
}

.hamburger_btn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (min-width:375px){
}
    
@media screen and (min-width:768px){
    .hamburger_btn {
        display: none;
    }
    #g-nav {
        position: fixed;
        top:auto;
        left:auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 1000px;
        height: 90px;
        transition: all 0s;
    }
    #g-nav li {
        border-bottom: none;
    }
    #g-nav li a {
        padding:8px;
        font-size: 1.4rem;
    }
    #g-nav-list ul {
        display: flex;
        justify-content: end;
    }
    #g-nav li::after {
        content: '';
    }

}

@media screen and (min-width:1024px){
    #g-nav li a {
        font-size: 1.4rem;
    }
}


/* ボタン
------------------------------- */

/* ボタン・共通 */
.button a {
    border-radius: 90px;
    padding: 5px 30px;
    text-decoration: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.button a:after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-weight: 900;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

/* ボタン・緑 */

.button_g a {
    background-color: #1DCB75;
    color: #FFF;
    border: 2px solid #1DCB75;
}

.button_g a:hover {
    color: #1DCB75; 
    background-color: #ffffff;
    border: 2px solid #1DCB75;
}

/* ボタン・白 */

.button_w a {
    background-color: #ffffff;
    border: 1px solid #1DCB75;
    cursor: pointer;
}

.button_w a:hover {
    color: #ffffff; 
    background-color: #1DCB75;
    border: 1px solid #ffffff;
}

.button_w:after {
    color: #1DCB75;
}

/* ボタン・矢印 */
.button_arrow a{
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
}

.button_arrow a:before{
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    color: #1DCB75;
    padding-right: 5px;
}

@media screen and (max-width: 767px){
    .button_arrow a{
        font-size: 1.6rem;
    }
}




/* ボタン・リンク */
/* 
.button_link {
    display: flex;
    justify-content: center;
}

.button_link p {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    background-color: #1DCB75;
    color: #FFF;
    border: 2px solid #1DCB75;
    margin-top: 30px; 
    width: 280px;
    text-align: center;
}

.button_link p:hover {
    color: #1DCB75; 
    background-color: #ffffff;
    border: 2px solid #1DCB75;
}

.button_link p a {
    text-decoration: none;
    font-size: 1.4rem;
}

.button_link p a:after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5em;
}
 */


/* ボタン・PDF */

/* .button_pdf {
    display: flex;
    justify-content: center;
} */

/* 
.button_pdf p {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    background-color: #1DCB75;
    color: #FFF;
    border: 2px solid #1DCB75;
    margin-top: 30px;
    width: 280px;
    text-align: center;
}

.button_pdf p:hover {
    color: #1DCB75; 
    background-color: #ffffff;
    border: 2px solid #1DCB75;
} */

.button_pdf a {
    text-decoration: none;
    font-size: 1.4rem;
}

.button_pdf a:after {
    /* content: url(../images/ico_pdf.svg); */
    content: '\f15b';
}
.button_pdf a:hover:after {
    background-color: #1DCB75;
}



/* 改行・表示
------------------------------- */

/* 改行 */

.br-320 {
    display: block;
}

.br-768 {
        display: block;
    }

.is-pc {
    display: none;
}
.is-sp {
    display: block;
}

@media screen and (min-width:375px){
    .br-320 {
        display: block;
    }
}
    
@media screen and (min-width:768px){
    .br-768 {
        display: none;
    }
    .is-pc {
        display: block;
    }
    .is-sp {
        display: none;
    }
}

@media screen and (min-width:1024px){
    .br-1024 {
        display: none;
    }
}

/* 表示 */

.display-375 {
    display: none;
}

@media screen and (min-width:375px){
    .display-375 {
        display: block;
    }
}


/* HEADER
------------------------------- */

header section {
    display: block;
    padding: 20px;
    height: 70px;
    background: #ffffff;
}

@media screen and (min-width:768px){
    header section {
        display: none;
    }    
}

/* MAIN
------------------------------- */

@media screen and (min-width:768px){
    main {
        padding-top: 90px;
    }
}


/* FOOTER
------------------------------- */

.footer {
    position: sticky;
    top: 100vh;
    width: 100%;
    background-color: #F3F3F3;
}

.footer section {
    padding: 30px 20px;   
}

.footer section ul {
    list-style:none;
    margin-top: 30px;
}

.footer section ul li {
    font-size: 1.5rem;
    border-top: 1px solid #CBCBCB;
    padding: 15px 0;
    
}

.footer section ul .mail:before {
    content: url(../images/ico_mail.svg);
    margin-left: 10px;
    margin-right: 15px;
}

.footer section ul .external:before {
    content:url(../images/ico_external.svg);
    margin-left: 10px;
    margin-right: 15px;
}

.footer section ul li a {
    text-decoration: none;
}

.footer section ul li a:hover {
    color: #1DCB75;
}

.copyright {
    /* height: 24px; */
    padding: 8px;
    background-color: #10C060;
}

.copyright p {
    font-size: 10px;
    color: #fff;
    text-align:center;
    /* line-height:24px; */
    letter-spacing: 0.1em;
}

    
@media screen and (min-width:768px){
    .footer section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer section .logo {
        margin-bottom: 0;
        order: 2;
    }
    .footer section ul {
        display: flex;
        border: none;
        order: 1;
        margin-top: inherit;
    }
    .footer section ul li {
        border: none;
        font-size: 1.4rem;
    }
    .footer section ul .mail:before,
    .footer section ul .external:before {
        margin-left: 15px;
        margin-right: 5px;
    }
}

@media screen and (min-width:1024px){
    .footer section .logo {
        margin-right: 80px;
    }
    .footer section ul {
        margin-left: 50px;
    }
    .footer section ul .mail:before,
    .footer section ul .external:before {
        margin-left: 30px;
    }
}


/* ボタン・PDFリンクボタン */
.ethics__link{
    background-color: #e7fff3;
    padding: 32px;
    margin-top: 30px;
}
.ethics__link ul{
    display: flex;
    gap: 20px 50px;
    flex-wrap: wrap;
}

.wp-block-button .wp-block-button__link,
.wp-block-file .wp-block-file__button {
    font-size: 1.4rem;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;

    background-color: #1DCB75;
    color: #FFF;
    border: 2px solid #1DCB75;

    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}
.wp-block-button a,
.wp-block-file a,
.ethics__link a {
    font-size: 1.6rem;
}

.ethics__link a{
    font-weight: bold;
}

.wp-block-button .wp-block-button__link:after {
    content: '\f178';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5em;
}

.wp-block-file .wp-block-file__button:after,
.ethics__link a:after,
.button_pdf a:after {
    content: "";
    background-color: #ffffff;
    display: inline-block;
    height: 1.7rem;
    width: 1.4rem;
    -webkit-mask: url("../images/ico_pdf.svg");
    mask: url("../images/ico_pdf.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    margin-left: 0.5em;
    vertical-align: middle;  
}

.ethics__link a:after{
    background-color: #333333;
}

.wp-block-file .wp-block-file__button:hover:after {
    background-color: #1DCB75;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-file a.wp-block-file__button:hover {
    color: #1DCB75; 
    background-color: #ffffff;
    border: 2px solid #1DCB75;
}


.nav-links {
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto 50px;
    border-top: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
}

.nav-previous,
.nav-next {
    padding: 20px;
    width: 50%;
    text-align: center;
}

.ethics__list{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.ethics__list li{
    border: 1px solid #1DCB75;
    width: calc(95% / 2);
    display: flex;
    flex-direction: column;
}

.ethics__list li p.title{
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #1DCB75;
    padding: 16px;
    display: flex;
    flex: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ethics__list li p.inner{
    padding: 20px 24px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

.ethics__list li p.inner small{
    display: block;
    padding-top: 10px;
    font-weight: normal;
    font-size: 1.2rem;
}

.ethics__list li p.inner small a{
    color: #1DCB75;
}

.ethics__comment{
    font-size: 1.2rem;
    padding-top: 20px;
}

.contents_ethics h2{
    margin-top: 80px;
}

.contents_ethics h3{
    margin-top: 80px;
}

@media screen and (max-width:767px){
    .ethics__list{
        flex-direction: column;
    }

    .ethics__list li{
        width: 100%;
    }

    .ethics__list li:last-child{
        margin-top: 15px;
    }

    .ethics__comment{
        font-size: 1rem;
    }

    .ethics__link{
        padding: 25px 15px;
    }
}

/* MEMBERSHIP
------------------------------- */
.membership .wrapper{
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: left;
}