@charset "UTF-8";
/* CSS Document */

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
    -webkit-overflow-scrolling: touch !important;

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
   
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

address {
    font-style: normal;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html {
    font-size: 16px;
}

body {
    /*ゴシック*/
    font-family: "source-han-sans-japanese", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
    color: #32461E;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1,h2,h3,h4,h5,
a,p,figcaption {
    transform: rotate(0.05deg);
}


/*共通の設定
-------------------------------------------------*/
.pc {
    display: block;
}

.sp {
    display: none !important;
}

.sp_s{
    display: none !important;
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp_s {
        display: none !important;
    }
}

@media only screen and (max-width: 400px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp_s {
        display: block !important;
    }
}



/*メインカラーの設定
-------------------------------------------------*/
:root {
    --main-green: #2D9140;
    --orange: #FD803E;
    --back-green: #C3E6AA;
    --txt-green: #32461E;
}


/*ロゴフォントの設定
-------------------------------------------------*/

nav h1 a{
 font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 900;
 font-style: normal;
 font-size: 56px;
 letter-spacing: 3px;
 color: var(--txt-green);
}

nav ul li a{
 font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 400;
 font-style: normal;
 font-size: 19px;
 color: var(--txt-green);
 letter-spacing: 1.5px;
}

.subHeader h2 {
font-family: "source-han-sans-japanese", sans-serif;
 font-weight: 700;
 font-style: normal;
 font-size: 55px;
}

.txt_ttlNumber,.txt_ttl1,.txt_ttl2 {
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 700;
}



/*　共通設定
-------------------------------------------------*/
.topContents h3:before {
    content: "";
    display: block;
    background-image: url(../images/icon_g.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 77px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 10px;

}

.topContents h3 {
    font-size: 40px;
    text-align: center;
    line-height: 1.8;
    font-weight: 700;
    letter-spacing: 1.3px;
}

/*　共通設定
-------------------------------------------------*/
/*　スマホメニュー　header　*/
.headingTitle {
    position: fixed;  /* 位置を固定する */
  top: 0;  /* 固定する位置を指定 */
  left: 0;  /* 固定する位置を指定 */
  z-index : 300;

    height: 75px;
    width: 100%;
    background-color: var(--back-green);
    padding-top: 10px;
    display: ;
}

.headernav_sp h1 a {
    padding-left: 20px;
    color: var(--txt-green);
    font-size: 28px;
    letter-spacing: 3px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
}


/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 200;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : var(--txt-green);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :var(--txt-green);
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :var(--txt-green);
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 100;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba( 22,22,22,0.8 );
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}


/*　TOP
-------------------------------------------------*/
.topHeader {
    background-color: var(--back-green);
    height: fit-content;
    padding-bottom: 65px;
    position: relative;
    margin-bottom: 130px;
}

.topHeader:after {
    content: '';
    display: block;
    width: 100vw;
    height: 207px;
    position: absolute;
    bottom: -175px;
    left: 0px;
    background-image: url(../images/header_wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.topHeader .headerWrap {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0 0 48px 48px;
    padding: 20px 50px 70px 50px;
}

.topHeader .headerWrap nav {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    align-items: center;
}

.topHeader .headerWrap nav ul {
    display: flex;
    margin-left: 60px;
}

.topHeader .headerWrap nav ul li {
    margin-right: 30px;
}

.topHeader .headerWrap .top_mainImage {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.topHeader .headerWrap .top_mainImage figcaption {
    text-align: right;
}
.topHeader .top_mainTitle {
    text-align: center;
}

.topHeader .top_mainTitle .txt_ttlNumber {
    max-width: 200px;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    background-color: var(--orange);
    color: #fff;
    margin-bottom: 10px;
}

.topHeader .top_mainTitle .txt_ttl1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.5;
}

.topHeader .top_mainTitle .txt_ttl2 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3.5px;
    line-height: 1.3;
}

.topHeader .top_mainTitle .txt_deadline {
    max-width: 700px;
    margin: 0 auto;
    background-color: #F2D9CA;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.topHeader .top_mainTitle .txt_deadline span {
    font-size: 30px;
    margin-left: 10px;

}

.topHeader .top_mainTitle .txt_introduction {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 2px;
}

.topHeader .top_mainTitle .organizer {
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    margin-top: 30px;

}

.topContents .sec01 {
    padding-top: 100px;
    padding-bottom: 120px;
}

.topContents .sec01_wrap {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.topContents .sec01_wrap:before {
    content: '';
    display: block;
    width: 345px;
    height: 227px;
    position: absolute;
    top: -70px;
    left: -80px;
    background-image: url(../images/chikyu_2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.topContents .sec01_wrap:after {
    content: '';
    display: block;
    width: 315px;
    height: 207px;
    position: absolute;
    bottom: -50px;
    right: -150px;
    background-image: url(../images/chikyu_1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.topContents .sec01_wrap h3 {
    margin-bottom: 20px;
}

.topContents .sec01_wrap > p {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    line-height: 2.5;
}

.topContents .sec01_wrap .link_btn_g {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 40px;
}

.topContents .sec01_wrap .link_btn_g a {
    color: #fff;
    font-size: 19px;
  font-weight: 600;
  display: block;
  background: var(--main-green);
  height: 60px;
  text-align: center;
  line-height: 60px;
  letter-spacing: 1.2px;

}

.topContents .sec02 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--orange);   
}

.topContents .sec02_wrap h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
} 

.topContents .sec02_wrap .infoCntn {
    max-width: 980px;
    margin: 0 auto;
}

.topContents .sec02_wrap .infoCntn dl > div {
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    padding-top: 45px;
    display: flex;
}

.topContents .sec02_wrap .infoCntn dl {
  color: #fff;
  font-weight: 500;  
}

.topContents .sec02_wrap .infoCntn dl dt {
    font-size: 16px;
    width: 200px;
}

.topContents .sec02_wrap .infoCntn dl dd a{
    font-size: 19px;
    color: #fff;
}

.topContents .sec03 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F5F7F4;
}

.topContents .sec03_wrap h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.topContents .sec03_wrap {
    max-width: 960px;
    margin: 0 auto;
}

.topContents .sec03_wrap .message_item {
    width: 100%;
    padding: 25px 25px 30px 25px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
}

.topContents .sec03_wrap .message_item:first-child {
    margin-bottom: 50px;
}

.topContents .sec03_wrap .message_item .figArea img {
    max-width: 200px;
}

.topContents .sec03_wrap .message_item figcaption {
    margin-top: 10px;
    color: var(--main-green);
}

.topContents .sec03_wrap .message_item figcaption .profession {
    border-bottom: 1px solid var(--main-green);
    font-size: 15px;
    font-weight: 500;
}

.topContents .sec03_wrap .message_item figcaption .name {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.7;
    padding-top: 5px;
}



.topContents .sec03_wrap .message_item .messageArea {
    max-width: 690px;
}

.topContents .sec03_wrap .message_item .messageArea p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.topContents .sec03_wrap .message_item .messageArea p br {
}

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

.topHeader:after {
    content: '';
    display: block;
    width: 100vw;
    height: 117px;
    position: absolute;
    bottom: -100px;
    left: 0px;
    background-image: url(../images/header_wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

   .topContents .sec01_wrap:before {
    content: '';
    display: block;
    width: 251px;
    height: 167px;
    position: absolute;
    top: -100px;
    left: 100px;
    background-image: url(../images/chikyu_2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.topContents .sec01_wrap:after {
    content: '';
    display: block;
    width: 225px;
    height: 148px;
    position: absolute;
    bottom: -100px;
    right: 20px;
    background-image: url(../images/chikyu_1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.topContents .sec01_wrap > p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
}

.topContents .sec01_wrap .link_btn_g {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 40px;
}

.topContents .sec01_wrap .link_btn_g a {
    color: #fff;
    font-size: 17px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

}

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

.topHeader {
    background-color: var(--back-green);
    height: fit-content;
    padding-bottom: 65px;
    position: relative;
    margin-bottom: 60px;
}

.topHeader .headerWrap {
    width: 85%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 30px 30px;
    padding: 30px 30px 40px 30px;
    margin-top: 75px;
}

.topHeader .headerWrap .top_mainImage {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.topHeader .top_mainTitle .txt_ttlNumber {
    max-width: 150px;
    margin: 0 auto;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.topHeader .top_mainTitle .txt_ttl1 {
    font-size: 28px;
}

.topHeader .top_mainTitle .txt_ttl2 {
    font-size: 40px;
}

.topHeader .top_mainTitle .txt_deadline {
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.topHeader .top_mainTitle .txt_deadline span {
    font-size: 25px;
    margin-left: 10px;
    display: block;
}

.topHeader .top_mainTitle .txt_introduction {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.5px;
}

.topHeader .top_mainTitle .organizer {
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    margin-top: 30px;
}

    .topContents .sec01_wrap:before {
        content: '';
        display: block;
        width: 161px;
        height: 107px;
        position: absolute;
        top: -40px;
        left: 0px;
        background-image: url(../images/chikyu_2.png);
        background-repeat: no-repeat;
        background-size: cover;
        transform: rotate(-8deg);
    }

     .topContents .sec01_wrap:after {
        content: '';
        display: block;
        width: 165px;
        height: 108px;
        position: absolute;
        bottom: -100px;
        right: 20px;
        background-image: url(../images/chikyu_1.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

.topContents .sec01 {
    padding-top: 100px;
    padding-bottom: 140px;
}

.topContents .sec01_wrap {
    width: 90%;
}

.topHeader:after {
    content: '';
    display: block;
    width: 100vw;
    height: 124px;
    position: absolute;
    bottom: -115px;
    left: 0px;
    background-image: url(../images/header_wave.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.topContents h3 {
    font-size: 30px;
} 

    .topContents .sec01_wrap > p {
        text-align: center;
        font-size: 16px;
        line-height: 1.7;
    } 

.topContents .sec02 {
    padding-top: 60px;
    padding-bottom: 70px;
    background-color: var(--orange);
}

.sec02_wrap {
    width: 90%;
    margin: 0 auto;
}

.topContents .sec02_wrap h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 0px;
}

.topContents .sec02_wrap .infoCntn dl > div {
    display: block;
}

.topContents .sec03 {
    padding-top: 60px;
    padding-bottom: 70px;
}

.topContents .sec03_wrap .message_item {
    width: 93%;
    margin: 0 auto;
    padding: 25px 14px 30px 14px;
    display: block;
}

.topContents .sec03_wrap .message_item .figArea img {
    max-width: 180px;
}

.topContents .sec03_wrap .message_item figcaption {
    margin-top: 10px;
    color: var(--main-green);
    display: inline-block;
    margin-left: 10px;
}

.topContents .sec03_wrap .message_item .messageArea {
    margin-top: 20px;
}

}

@media only screen and (max-width: 400px){
    .topHeader .headerWrap {
        width: 90%;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 30px 30px;
        padding: 30px 15px 30px 15px;
        margin-top: 75px;
    }

    .topHeader .top_mainTitle .txt_ttl2 {
        font-size: 30px;
    } 

    .topHeader .top_mainTitle .txt_deadline {
        line-height: 1.5;
    }

    .topHeader .top_mainTitle .txt_introduction {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: 1.2px;
    }

    .topHeader .top_mainTitle .organizer {
        font-size: 16px;
        margin-top: 20px;
    }

    .topContents .sec01_wrap:before {
        top: -100px;
        left: 0px;
    }

    .topContents .sec01_wrap:after {
        bottom: -120px;
        right: 5px;
    }

    .topContents h3 {
        font-size: 26px;
        line-height: 1.4;
    }

    .topContents .sec02_wrap .infoCntn dl > div {
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    padding-top: 30px;
    display: block;
}

    .topContents .sec03_wrap .message_item .figArea img {
        max-width: 150px;
    }

    .topContents .sec03_wrap .message_item figcaption .profession {
    border-bottom: 1px solid var(--main-green);
    font-size: 14px;
    font-weight: 500;
}
}


/*　footer
-------------------------------------------------*/

footer {
    padding-top: 50px;
    padding-bottom: 50px;
}

footer .footer_wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

footer .footer_wrap h1 {
    color: var(--main-green);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1.3px;
}

footer .footer_wrap > div > p  {
    font-size: 16px;
}
footer .footer_wrap > div > address {
    margin-top: 10px;
}

footer .footer_wrap > div > address .tel {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
}

footer .footer_wrap > div > address .destination {
    font-size: 17px;
}

footer .footer_wrap > div > address .eMail {
    margin-top: 10px;
}

@media only screen and (max-width: 750px) {
    footer {
    padding-top: 35px;
    padding-bottom: 20px;
}

    footer .footer_wrap h1 {
    color: var(--main-green);
    font-size: 22px;
    letter-spacing: 1.3px;
}
}


/*　下層ページ共通設定
-------------------------------------------------*/
.subHeader {
    background-color: var(--back-green);
    padding-bottom: 65px;
    position: relative;
    margin-bottom: 100px;
}

.subHeader:after {
    content: '';
    display: block;
    width: 100vw;
    height: 157px;
    position: absolute;
    bottom: -135px;
    left: 0px;
    background-image: url(../images/header_wave_sub.svg);
    background-repeat: no-repeat;
    background-size: contain;

}

.subHeader .headerWrap {
}

.subHeader .headerWrap nav {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0 0 40px 40px;
    padding: 30px 0 20px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.subHeader .headerWrap nav ul {
    display: flex;
    margin-left: 60px;
}

.subHeader .headerWrap nav ul li {
    margin-right: 30px;
}

.subHeader h2 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 5px;
    margin-top: 50px;
}

.subHeader nav h1 a {
    font-size: 50px;
}

@media only screen and (max-width:750px) {
    .subHeader:after {
        content: '';
        display: block;
        width: 100vw;
        height: 138px;
        position: absolute;
        bottom: -133px;
        left: 0px;
        background-image: url(../images/header_wave_sub.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
}    



/*　guideline
-------------------------------------------------*/
.glContents h3{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 50px 0;
}

.glContents .sec01{
    padding-top: 80px;
    padding-bottom: 110px;
    background-color: #F5F7F4;
}

.glContents .sec01_wrap {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 40px;
    border-radius: 20px;
}

.glContents .sec01_wrap .outline_inner {
    max-width: 900px;
    margin: 0 auto;
}

.glContents .outline_inner dl .gl_item {

}

.glContents .outline_inner dl .gl_item dt {
    height: 53px;
    width: 100%;
    background-color: var(--main-green);
    color: #fff;
    font-size: 22px;
    line-height: 2.5;
    font-weight: 600;
    letter-spacing: 5px;
    padding-left: 20px;
}

.glContents .outline_inner dl .gl_item dd {
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.9;
}

.glContents .outline_inner dl .gl_item dd .detail {
    margin-top: 15px;
   
}

.glContents .outline_inner dl .gl_item dd .deadline {
    max-width: 890px;
    padding: 8px 0;
    background-color: var(--orange);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.glContents .outline_inner dl .gl_item dd .deadline > span {
    font-size: 22px;
    margin-right: 30px;
    letter-spacing: 3px;
}

.glContents .outline_inner dl .gl_item dd .entry_outlineBox {
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--main-green);
    padding: 16px;
    margin-bottom: 30px;
}

.glContents .outline_inner dl .gl_item dd .entry_outlineBox .heading {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--main-green);
}

.glContents .outline_inner .gl_item .entry_outlineBox .detail02 span a {
    color: #FD5454;
    border-bottom: 1px solid #FD5454;
}

.glContents .outline_inner .gl_item .entry_outlineBox address {
    margin-top: 15px;
    margin-bottom: 15px;
}

.glContents .outline_inner .gl_item .entry_outlineBox .formlink_btn {
    max-width: 500px;
    margin: 0 auto;
}
.glContents .outline_inner .gl_item .entry_outlineBox .formlink_btn a:hover {
    opacity: 0.7;
    transition: 0.4s;
}

.glContents .outline_inner .gl_item .entry_outlineBox .formlink_btn a {
    color: #fff;
    font-size: 20px;
  font-weight: 600;
  display: block;
  height: 55px;
  background: #393939;
  border-radius: 12px;
  text-align: center;
  line-height: 55px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.glContents .outline_inner .gl_item .dllink_btn_b {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 30px;
    pointer-events: none;
}

.glContents .outline_inner .gl_item .dllink_btn_b p {
    color: #fff;
    font-size: 20px;
  font-weight: 600;
  display: block;
  height: 55px;
  background: #393939;
  border-radius: 12px;
  text-align: center;
  line-height: 60px;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}
/*
.glContents .outline_inner .gl_item .dllink_btn_b a:hover {
    opacity: 0.7;
    transition: 0.4s;
}
*/
.glContents .outline_inner .gl_item .dllink_btn_p {
    max-width: 500px;
    margin: 0 auto;
    pointer-events: none;
}
/*
.glContents .outline_inner .gl_item .dllink_btn_p a:hover {
    opacity: 0.7;
    transition: 0.4s;
}
*/
.glContents .outline_inner .gl_item .dllink_btn_p p {
    color: #fff;
    font-size: 20px;
  font-weight: 600;
  display: block;
  height: 55px;
  background: #FD7373;
  border-radius: 12px;
  text-align: center;
  line-height: 60px;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}
.download{
    text-align: center;
    border: #2D9140 1px solid;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: -40px;
}
.download a{
    color: #FD7373;
    border-bottom: #FD7373 1px solid;
}
.glContents .sec02 {
    padding: 50px 0;
    background-color: var(--orange);
}

.glContents .sec02 .sec02_wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.glContents .sec02 .sec02_wrap p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.9;
}


@media only screen and (max-width:750px){
.subHeader {
    background-color: var(--back-green);
    padding-bottom: 65px;
    padding-top: 70px;
    position: relative;
    margin-bottom: 100px;
}

.subHeader:after {
    content: '';
    display: block;
    width: 100vw;
    height: 137px;
    position: absolute;
    bottom: -133px;
    left: 0px;
    background-image: url(../images/header_wave_sub.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.glContents h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin: 30px 0;
}

.glContents .sec01 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.glContents .sec01_wrap {
    width: 94%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.glContents .outline_inner dl .gl_item dt {
    height: 50px;
    width: 95%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 2.5;
    padding-left: 20px;
}

.glContents .outline_inner dl .gl_item dd {
    width: 95%;
    margin: 0 auto;
    padding-left: 5px;
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.7;
}

.glContents .outline_inner dl .gl_item dd .deadline {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-align: center;
}

.glContents .outline_inner dl .gl_item dd .entry_outlineBox .heading {
    font-size: 20px;
    margin-bottom: 10px;
}

.glContents .sec02 {
    padding: 45px 0;
    background-color: var(--orange);
}

.glContents .sec02 .sec02_wrap p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

}

@media only screen and (max-width: 400px){
    .subHeader {
        padding-bottom: 65px;
        margin-bottom: 60px;
    }

    .glContents h3 {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.6;
        margin: 40px 0;
    }

.glContents .outline_inner dl .gl_item dd .deadline {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1.5px;
}

}

@media only screen and (max-width:400px){
    .subHeader:after {
        bottom: -130px;
    }
}

.achieve .subHeader {
    margin-bottom: 140px;
}

.achieveContents .linkBtn_sec {
    margin-top: 60px;
    margin-bottom: 90px;
}

.achieveContents .linkBtn_sec .every_linkBtn {
    max-width: 700px;
    margin: 0 auto;
    height: 65px;
    text-align: center;
}

.achieveContents .linkBtn_sec .every_linkBtn a {
    display: block;
    width: 100%;
    padding: 10px 40px;
    background-color: #FD5454;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.achieveContents .achieve_sec {
    background-color: #F5F7F4;
    padding: 90px 0;
}

.achieve_sec .achieveContainer {
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 90px 0;
}

.achieve_sec .achieveContainer h3 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}

.achieveContainer .achieveInner {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.achieveContainer .achieveInner dl dt {
    width: 100%;
    height: 53px;
    background-color: var(--main-green);
    border-radius: 28px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}

.achieveContainer .achieveInner .grand > dd {
    margin: 30px 0 40px 0;
}

.achieveContainer .achieveInner .grand > dd > .title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.achieveContainer .achieveInner .grand > dd > .name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.achieveContainer .achieveInner .grand > dd > .name > span {
    margin-left: 20px;
    font-size: 16px;
}

.achieveContainer .achieveInner .outstanding {
    margin-bottom: 40px;
}

.achieveContainer .achieveInner .outstanding > dd {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    justify-content: center;
}

.achieveContainer .achieveInner .outstanding > dd > .title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-align: right;
}

.achieveContainer .achieveInner .outstanding > dd > .name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 10px;
    line-height: 2.2;
}

.achieveContainer .achieveInner .outstanding > dd > .name > span {
    margin-left: 10px;
    font-size: 15px;
}


.achieveContainer .achieveInner .special {
    margin-bottom: 40px;
}

.achieveContainer .achieveInner .special > dd {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

.achieveContainer .achieveInner .special > dd > .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.3px;
}

.achieveContainer .achieveInner .special > dd > .name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 10px;
}

.achieveContainer .achieveInner .special > dd > .name > span {
    margin-left: 10px;
    font-size: 15px;
}

.achieveContainer .achieveInner .special {
    margin-bottom: 40px;
}

.achieveContainer .achieveInner .special > dd {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}


.achieveContainer .achieveInner .special > dd > .name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-left: 10px;
}

.achieveContainer .achieveInner .special > dd > .name > span {
    margin-left: 10px;
    font-size: 15px;
}

.achieveContainer .achieveInner .special {
    margin-bottom: 40px;
}

.achieveContainer .achieveInner .special > dd {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    justify-content: center;
}

.achieveContainer .achieveInner .special > dd > .name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-left: 10px;
}

.achieveContainer .achieveInner .special > dd > .name > span {
    margin-left: 10px;
    font-size: 15px;
}

.achieveContainer .achieveInner .winning {
    margin-bottom: 40px;
}

.achieveContainer .achieveInner .winning > dd {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

.achieveContainer .achieveInner .winning > dd > .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.3px;
    width: 400px;
    text-align: right;
}

.achieveContainer .achieveInner .winning > dd > .name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 10px;
}

.achieveContainer .achieveInner .winning > dd > .name > span {
    margin-left: 10px;
    font-size: 15px;
}

.achieveContainer .achieveInner .ceremony_gallary h4 {
    width: 100%;
    height: 53px;
    font-size: 20px;
    line-height: 2.5;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 14px;
    background-color: var(--orange);
    text-align: center;
}
.achieveInner .ceremony_gallary .w_all{
    margin-top: 20px;
    margin-bottom: 15px;
}

.achieveInner .ceremony_gallary .w_all img {
    width: 100%;

}

.achieveInner .ceremony_gallary .w_50 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.achieveInner .ceremony_gallary .w_50 img {
    display: block;
    width: 49%;
    margin-bottom: 15px;
}

.achieveContents .linkBtn_sec .listBtn {
    margin-bottom: 50px;
}

.achieveContents .sakuhin_img {
    margin-bottom: 60px;
    margin-top: 10px;
}

.achieveContents .sakuhin_img img {
    border: 1px solid #B5B5B5;
}

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

    .achieve .subHeader {
    margin-bottom: 90px;
}
    .achieveContents .linkBtn_sec {
    margin-top: 30px;
    margin-bottom: 40px;
}

    .achieveContents .linkBtn_sec .every_linkBtn a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #FD5454;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 1.3px;
}

    .achieve_sec .achieveContainer {
        padding: 0;
        padding-top: 30px;
        max-width: 95%;
        margin: 0 auto;
    }


.achieve_sec .achieveContainer h3 {
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1;
}

.achieveContainer .achieveInner dl dt {
    width: 90%;
    margin: 0 auto;
    height: 50px;
    background-color: var(--main-green);
    border-radius: 25px;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}

.achieveContainer .achieveInner .outstanding > dd > .title {
    text-align: center;
}
.achieveContainer .achieveInner .special > dd > .title {
    text-align: center;
}
.achieveContainer .achieveInner .winning > dd > .title {
    text-align: center;
}

.achieveContainer .achieveInner .outstanding > dd > .name {
    width: 95%;
    text-align: center;
}
.achieveContainer .achieveInner .special > dd > .name {
    width: 95%;
    text-align: center;
}
.achieveContainer .achieveInner .winning > dd > .name {
    width: 95%;
    text-align: center;
}

.achieveInner .ceremony_gallary .w_50 img {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.achieveContainer .achieveInner {
    padding-bottom: 30px;
}

.achieveContents .achieve_sec {
    background-color: #F5F7F4;
    padding: 40px 0;
}


}




/*　お問い合わせ
-------------------------------------------------*/

.contact .subHeader {
    margin-bottom: 140px;
}

.contactContents .sec01 {
    margin-bottom: 80px;
}

.contactContents .sec01_wrap {
    max-width: 900px;
    margin: 0 auto;
}

.contactContents .sec01_wrap .sec01Read {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 2.5px;
    text-align: center;
    margin-bottom: 60px;

}

.contactContents .sec01_wrap .sec01Read:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -22px;/*線の上下位置*/
  display: inline-block;
  width: 180px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.contactContents .sec01_wrap h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-green);
    letter-spacing: 3px;
    text-align: center;
} 

.contactContents .sec01_wrap .contact_cntn {
    max-width: 570px;
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
}

.contactContents .contact_cntn .contactItem {
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--main-green);
    padding: 20px 0;
    margin-bottom: 20px;
}

.contactContents .contact_cntn .contactItem > h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--main-green);
    margin-bottom: 10px;
}
.contactContents .contact_cntn .contactItem .phone_number {
    margin-bottom: 10px;
}
.contactContents .contact_cntn .contactItem .phone_number a {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--txt-green);
    line-height: 1;
}

.contactContents .contact_cntn .contactItem .phone_to {
    font-weight: 500;
}

.contactContents .contact_cntn .contactItem .mail_linkBtn > a {
    width: 350px;
    margin: 0 auto;
    height: 50px;
    font-size: 17px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 1.5px;
    color: #fff;
    background-color: var(--main-green);
    display: block;
}

.contactContents .contact_cntn .contactItem > .mailAddress {
    margin-top: 8px;
}


.contactContents .sec02 {
    background-color: #F5F7F4;
    padding: 60px 0;
}

.contactContents .sec02 .sec02_wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contactContents .sec02_wrap h5 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contactContents .sec02_wrap .honbu_linkBtn a {
    max-width: 500px;
    margin: 0 auto;
    height: 50px;
    background-color: var(--orange);
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 2px;
    color: #fff;
    display: block;
    margin-bottom: 40px;
}

.contactContents .sec02_wrap .linkBtn_cntn {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.contactContents .sec02_wrap .linkBtn_cntn .chiiki_linkBtn {
    
}

.contactContents .sec02_wrap .linkBtn_cntn .chiiki_linkBtn a {
    width: 180px;
    margin: 0 auto;
    height: 50px;
    background-color: var(--orange);
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 2px;
    color: #fff;
    display: block;
}

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

.contact .subHeader {
    margin-bottom: 100px;
}

.contactContents .sec01 {
    margin-bottom: 50px;
}   

.contactContents .sec01_wrap {
    width: 90%;
    margin: 0 auto;
}

.contactContents .sec01_wrap .sec01Read {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 1.5px;
    margin-bottom: 60px;
}

.contactContents .sec01_wrap h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contactContents .sec01_wrap .contact_cntn {
    margin-top: 20px;
}

.contactContents .contact_cntn .contactItem .phone_number a {
    font-size: 30px;
    letter-spacing: 3px;
}

.contactContents .contact_cntn .contactItem .mail_linkBtn > a {
    width: 95%;
    font-size: 17px;
    letter-spacing: 1.5px;
}

.contactContents .sec02 {
    padding: 40px 0;
}

.contactContents .sec02 .sec02_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.contactContents .sec02_wrap .honbu_linkBtn a {
    width: 95%;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 40px;
}

.contactContents .sec02_wrap .linkBtn_cntn {
    display: block;
}

.contactContents .sec02_wrap .linkBtn_cntn .chiiki_linkBtn a {
    width: 200px;
    margin: 0 auto;
    font-size: 16px;
    margin-bottom: 16px;
}

}

/*　プライバシーポリシー
-------------------------------------------------*/

.privacy_policy .subHeader {
    margin-bottom: 140px;
}

.ppContents .sec_pp {
    background-color: #F5FFED;
    padding: 80px 0;
}

.ppContents .sec_pp .sec_pp_inner {
    max-width: 900px;
    margin: 0 auto;
}

.ppContents .sec_pp .sec_pp_inner h3 {
    max-width: 900px;
    margin: 0 auto;
    height: 55px;
    font-size: 18px;
    font-weight: 500;
    line-height: 55px;
    letter-spacing: 1.5px;
    color: #fff;
    padding-left: 10px;
    background-color: var(--main-green);
    margin-bottom: 20px;

}

.ppContents .sec_pp .sec_pp_inner p {
    padding: 0 15px;
    margin-bottom: 30px;
}

.ppContents .sec_pp .sec_pp_inner h4 {
    max-width: 900px;
    margin: 0 auto;
    background-color: #C3E6AA;
    height: 45px;
    font-size: 17px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 1.5px;
    padding-left: 14px;
    margin-bottom: 20px;
}

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


.privacy_policy .subHeader {
    

}

.privacy_policy .subHeader h2 {
    text-align: center;
    font-size: 30px;
    letter-spacing: 4px;
}

.ppContents .sec_pp {
    padding: 40px 0 20px 0;
}

.ppContents .sec_pp .sec_pp_inner {
    width: 95%;
    margin: 0 auto;
}

.ppContents .sec_pp .sec_pp_inner h3 {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1.3px;
}



}






















