
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------


/*--------------------------------------------------------------
# Reset CSS
--------------------------------------------------------------*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  font-size: 16px;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.3;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}


a:hover {
  text-decoration: none !important;
}
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
/*----------fonts-------------*/
  --heading-font: "Noto Sans JP", sans-serif;
  --body-font: "Noto Sans JP", sans-serif;

  --base-font-size: 16px;
  --base-line-height: 1.75rem;
  --base-font-weight: 500;

  --sp-base-font-size: 0.875rem;
  --base-line-height: 1.5rem;
  --base-font-weight: 500;

  --h1-size: 4rem;
  --h1-line-height: normal;
  --h1-weight: 700;

  --h2-size: 1.25rem;
  --h2-line-height: normal;
  --h2-weight: 500;

  --sp-h1-size: 2rem;
  --sp-h1-line-height: 2.4375rem;
  --sp-h1-weight: 700;

  --sp-h2-size: 1rem;
  --sp-h2-line-height: normal;
  --sp-h2-weight: bold;

  /*----------break points-------------*/
  --mobile: 0px;
  --tablet: 768px;
  --desktop: 1024px;
  --pc: 1200px;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

html {
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: var(--sp-base-line-height);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  background-color: var(--page-bg);
  color: var(--ipa-black);
  padding: 0;
  margin: 0;
}

main {
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 0;
  font-weight: var(--h1-weight);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  /* transition: color 0.3s ease-in-out; */
}

a:hover,
a:focus {
  color: #3498db;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  background-color: #fff;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
}

button {
  font-family: var(--body-font);
  font-size: 1.25rem;
  line-height: normal;
  cursor: pointer;
  background-color: var(--gradient-red-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
}

button:hover {
  background-color: #2980b9;
}

/******共通パーツ******/

.main_color{
 color:#0062b2;
}

.f_bold{
 font-weight: bold;
}

.font_80{
 font-size: 80%;
}


.font_90{
 font-size: 90%;
}

.font_110{
 font-size: 110%;
}

.font_120{
 font-size: 120%;
}

.font_150{
 font-size: 150%;
}

.text_center{
 text-align: center;
}

.tw_auto{
 text-wrap: auto;
}

.margin_b_1{
 margin-bottom:1rem;
}

.margin_b_1_5{
 margin-bottom:1.5rem;
}

/*************/

section {
    background: linear-gradient(90deg, #06b3a821, #a6b5dc26 30%, #d3a4ca45 50%, #92d0c42e 80%, #00baef29 100%);
    padding: 2rem;
    border-radius: 10px;
  background-size: 200% 200%;
  animation: sectionMove 16s ease infinite;
}


@keyframes sectionMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

section p {
    margin-bottom: 0;
}

.appli_btn{
 display: flex;
 align-items: center;
 justify-content:space-between;

 max-width: 380px;
 margin: 2rem auto;

 border-radius: 10px;
 padding: 0.25rem 1rem;


 background: linear-gradient(270deg, #0e9887, #0064b4, #0e9887);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

.appli_btn_sym{
 display: flex;
 align-items: center;
 justify-content:space-between;

 max-width: 380px;
 margin: 2rem auto;

 border-radius: 10px;
 padding: 0.25rem 1rem;


 background: linear-gradient(270deg, #a3ca0f, #f2a100, #ec7700);
  background-size: 400% 400%;
  animation: gradientMovesym 8s ease infinite;
}

.e_title img{
 height: 2.4rem;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientMovesym {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.appli_btn_text{
 color: #ffffff;
 font-weight: bold;
 text-align: center;
 padding-left: 1rem;
}

.appli_btn img,
.appli_btn_sym img {
    height: 4rem;
}

section{
 margin: 0 0 3rem 0;
}
section h1{
 padding-left:1.5rem;
    background-image: linear-gradient(to top, #0064b4 10%, #0e9887 100%);
    background-repeat: no-repeat;
    background-size: 0.5rem 100%;
}

.event_con {
    margin: 2rem 0 4rem 0;
}

.event_con_douji{
  margin: 2rem 0 0 0;
}
.e_title {
    margin: 1rem 0;
}

.jin_img {
    display: flex;
    justify-content: center;
        margin-top: 1rem;
}


.jin_img img{
    max-height: 200px;
}

.ws_con{
    padding-right: 2rem;
    line-height: 2;
}

.sym_flex{
 display: flex;
 align-items: center;
 justify-content: center;
}

.sym_flex img{
 max-height: 200px;
}

.douji{
 padding-left:2rem;
}

.footer_nami{
 background: url('../img/footer.webp');
 padding: 4rem 0 3rem 0;
 text-align: center;

     margin-top: 4rem;
}

.btn_f{
 position: fixed;
    bottom: 10px;
    right: 10px;
}

.btn_f .appli_btn,
.btn_f .appli_btn_sym{
 margin:0;
}

.btn_f .ap_area{
 margin:1rem 0 0 0;
}


.wr_menu_bar{
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.logo {
    width: 24rem;
}

.header_menu{
 display: flex;
  list-style: none;
  margin:0;
}

.header_menu li{
 flex: auto;
 padding: 1rem;
 font-weight: bold;
}




.nami_w_s{
 background: none;
 background-color: #ffffff;
}



.sec_title {
    text-align: center;
    background-image: none;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding: 6px;
    margin-bottom: 0.2rem;
    background: linear-gradient(90deg, #109788 0%, #0165b5 100%);
    background-repeat: no-repeat;
    background-size: 100% 6px;
    background-position: bottom;
}

.ab_flex p{
 margin:0;
}

.ab_flex {
    margin-top: 2rem;
}

.bg_img{
 background-image: url(../img/bglong.jpg);
 background-size: 100vw auto;
  /*background-repeat: no-repeat;*/
}

.wrap_section {
    background: #ffffff;
    border-radius: 10px;
}

.h2_title{
    display: flex;
    align-items: center;
}

.h2_title img {
    width: 3rem;
    margin-right: 0.875rem;
}


.koumoku {
    margin-top: 2rem;
    line-height: 1.5;
}

.koumoku p{
 margin-top:0.5rem;
}

.catch {
    text-align: center;
    color: #e84592;
}

.t_e_ul{
 margin:0.5rem 0 0 0;
 padding-left:2rem;
}

.t_e_ul li{
 line-height: 1.5;
 font-weight: bold;
}

.kome{
 text-align: right;
}

.appli_btn.no_flex {
    display: block;
    padding: 0.5rem;
    margin: 0 auto;
}


.tbl-r02 th{
 vertical-align: top;
 background-color: #005eae;
 color: #ffffff;

 padding: 0.5rem 0;
}

.tbl-r02 td{
 background-color: #ffffff;
 padding: 0.5rem;
}

.tbl-r02 {
    margin: 1rem auto;
}

.tt_sym{
     justify-content: center;
}

.end_sec{
 margin-bottom:0;
}

.youtube{
 text-align: center;
}

.youtube {
  width: 100%;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 560 / 315; /* = 16 / 9 でもOK */
  height: auto;
}

a.app_brn {
    background-color: #ef8d01;
    font-size: 1rem;
    padding: 0.5rem;
    color:#ffffff;
    margin-bottom:1rem;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
}

a.app_brn:hover {
    background-color: #e28400;
    font-size: 1rem;
    padding: 0.5rem;
    color:#ffffff;
    margin-bottom:1rem;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
}


ul.maru_none {
    list-style: none;
    padding-left: 1rem;
}

.mail_rei{ 
    border-top: dotted 6px #005eae;
    margin-top: 2rem;
}


@media (min-width: 768px) {
 .pc{
  display: block;
 }

 .pc-inline{
  display: inline-block;
 }

 .sp{
  display: none;
 }

 .container{
  max-width: 1200px;
  margin: 0 auto;
          padding: 2rem 4.5rem 4rem 4.5rem;
 }

 .k_m_img{
 display: flex;
 justify-content: center;
 align-items: flex-start;
 margin-top: 1rem;
}

.appli_area{
 display: flex;
 align-items: center;
 justify-content: center;
}

.ap_area{
 margin: 1rem 2rem 1.5rem;
}

 .btn_f .appli_area{
  display: block;
 }

 .ab_flex{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
 }

 .ab_flex div{
  width: 48%;
 }

  .flex_left_70 {
    width: 70%;
    margin-right: 1rem;
}
 .morita_img {
    width: 30%;
}

.tbl-r02 th {
    width: 10%;
}
.appli_btn_text.p_none{
 padding:1rem 4rem;
}

}

@media (max-width: 767px) {

  .pc{
  display: none;
 }

 .sp{
  display: block;
 }

 h1 {
  font-size: 1.6rem;
  line-height: 1.2;
 }

h2 {
  font-size: 1.4rem;
  line-height: 1.3;
 }

h3 {
  font-size: 1.2rem;
 }

.container {
        padding: 1.8rem 3.5rem;
 }

 section {padding: 1rem 0.5rem;
 }

 .k_m_img {
    margin-top: 1rem;
 }

 .ws_con {
    line-height: 1.5;
 }

 .morita_img {
    margin: 1rem auto 0 auto;
    max-width: 200px;
 }

 .sym_img {
    width: 30%;
}


 .douji {
    width: 70%;
    padding-left: 1rem;
    font-size: 130%;
 }

 .appli_btn,
 .appli_btn_sym{
    display: flex;
    justify-content: center;
 }

 .h2_title img {
    width: 2rem;
    margin-right: 0.25rem;
}

 .t_e_ul {
    padding-left: 1.8rem;
 }

  .tbl-r02 {
    width: 100%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }

  .tbl-r02 th{
   text-align: start;
   padding-left: 0.5rem;
  }



}

@media (max-width: 414px) {
  .btn_f .appli_area{
    display: flex;
    justify-content: space-around;
   }

   .btn_f {
      position: fixed;
              bottom: 0px;
          right: 0px;
          width: 100vw;
   }

    .btn_f .appli_btn_text {
      font-size: 0.7rem;
      line-height: 1.5;
  }
   .al_f_img img {
      height: 3rem;
  }

  .container {
        padding: 1.8rem;
    }

    .appli_btn_text.p_none{
 padding-left: 0;
}
}

