@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..600&display=swap');


/* --------------------------------------------------
   reset
----------------------------------------------------- */
html,body,h1,h2,h3,h4,h5,h6,p,div,ul,ol,li,dl,dt,dd,table,caption,th,td,form,button,label,address,blockquote,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%; font-weight: normal;}
body {line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
nav ul {list-style:none;}
hr {display: none;}
img,abbr {border: none; vertical-align: bottom;}
ul,ol,li {list-style: none;}
table {border-collapse: collapse; border-spacing: 0;}
th,td {text-align: left;}
button,input[type="submit"] {-webkit-appearance: none; -moz-appearance: none; appearance: none;}



/* --------------------------------------------------
   COMMON
----------------------------------------------------- */
html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:before,*,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #27499d;
  text-decoration: none;
}

a.wlink {
  color: #fff;
  text-decoration: none;
}
a.wlink:hover {
  color: #27499d;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  line-height: 1.5;
}

/* svgのIEバグ回避 */
img[src$='.svg']
{
    width: 100%;
    height: auto;
}

@media(min-width: 1025px){
  a[href^="tel:"]{
    pointer-events: none;
    cursor: default;
  }
}

.mb {
  margin-bottom: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);;
}

/* --------------------------------------------------
   HEADER
----------------------------------------------------- */
.header-area {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  height: 60px;
  color: #27499d;
  z-index: 100;
}
.header-area a {
  color: #fff;
}
.header-area .logo {
  position: absolute;
  left: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
  opacity: 0;
}
.header-area .logo img {
  height: 20px;
  width: auto;
}
.header-area .logotop {
  opacity: 1;
}

  @media screen and (max-width: 1024px) {
    .header-area {
    }
    .header-area .logo {
      position: absolute;
    }
  }


/* HEADER menu
-------------------------------------- */
.header-menu {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 60px;
}
  @media screen and (max-width: 1024px) {
    .header-menu {
      position: absolute;
      width: 100%;
      height: 60px;
      margin: 0 auto;
      padding: 10px 20px;}
  }


/* --------------------------------------------------
   Navigation Button
----------------------------------------------------- */
.nav-menu {
  position: absolute;
  right: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
}

.nav-wrap .nav-inner {
  margin-top: 1.875rem;
}
.nav-wrap ul {
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav-wrap ul li {
  display: inline-block;
  margin-left: 40px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 0.250rem + 1.563vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
}
.nav-wrap ul li a {
  padding-bottom: 5px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
.nav-wrap ul li a:hover {
  background-position: bottom center;
  background-size: 100% 2px;
}

/* --------------------------------------------------
   Navigation Button
----------------------------------------------------- */
  @media screen and (max-width: 1024px) {
    /* Close Button
    -------------------------------------- */
    .nav-button {
      position: fixed;
      top: 25px;
      right: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
      width: 38px;
      height: 15px;
      cursor: pointer;
      z-index: 101;
    }
    .nav-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      height: 3px;
      width: 100%;
      background: #fff;
      transition: all 0.2s;
    }
    .nav-line::before,
    .nav-line::after {
      content: "";
      position: absolute;
      left: 0;
      height: 3px;
      width: 100%;
      background: #fff;
      -webkit-transition: all 0.4s;
      transition: all 0.4s;
    }
    .nav-line::before {
      top: -8px;
    }
    .nav-line::after {
      top: 8px;
    }

    /* Open Button
    -------------------------------------- */
    .openNav nav {
      visibility:visible;
      opacity:1;
    }
    .openNav .nav-wrap {
      visibility: visible;
      opacity: 1;
      top:0;
      right: 0;
    }
    .openNav .nav-button {
      border-color: #fff
    }
    .openNav .nav-line {
      background-color: transparent;
    }
    .openNav .nav-line::before,
    .openNav .nav-line::after {
      top: 0;
      background: #fff;
    }
    .openNav .nav-line::before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .openNav .nav-line::after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }

    /* Button Menu
    -------------------------------------- */
    .nav-wrap {
      position: fixed;
      display: block;
      justify-content: center;
      top:0;
      right: -120%;
      width: 100%;
      height: 100vh;
      background-color: rgb(0 139 187 / 0.8);
      transition: all 0.4s;
      visibility: hidden;
      opacity: 0;
      z-index: 100;
    }
    .nav-wrap .nav-inner {
      position: relative;
      align-items: center;
      justify-content: space-between;
      top: 70px;
      left: 0;
      height: 100vw;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .nav-wrap ul {
      display: block;
      width: 50%;
      padding: 10px 0;
      margin: 0;
    }
    .nav-wrap ul li {
      display: block;width: auto;
      text-align: left;
      padding: 50px 20% 5px 10%;
      margin: 0;
    }
    .nav-wrap ul li a {
      display: block;
      font-size: 2rem;
      font-weight: 400;
      line-height: 0;
      color: #fff;
      padding-bottom: 20px;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0 2px;
      transition: background-size 0.3s;
    }
    .nav-wrap ul li a:hover {
      background-position: bottom left;
      background-size: 100% 2px;
    }
}


/* --------------------------------------------------
   HEADER change
----------------------------------------------------- */
.header-change {
  color: #27499d;
  background-color: rgb(255 255 255 / 0.8);
}
.header-change .nav-wrap {
}
.header-change .nav-inner {
  margin-top: 0;
}
.header-change .nav-inner a {
  color: #27499d;
  padding-bottom: 5px;
  background-image: linear-gradient(#27499d, #27499d) !important;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
.header-change .nav-inner a:hover {
  background-position: bottom center;
  background-size: 100% 2px;
}
.header-change .logo {
  opacity: 1;
}

.header-change .nav-line,
.header-change .nav-line::before,
.header-change .nav-line::after {
  background: #27499d;
}


/* --------------------------------------------------
   TEXT
----------------------------------------------------- */
h1, h1.htxtw {
  position: relative;
  padding: clamp(0.313rem, -0.025rem + 0.703vw, 0.625rem) 0.5rem;
  margin-bottom: clamp(0.938rem, 0.000rem + 1.953vw, 1.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(1.875rem, -0.333rem + 5.889vw, 5rem);
  text-align: center;
}
h1 {
  color: #27499d;
}
h1.htxtw {
  color: #fff;
}

h1::before, h1::after,
h1.htxtw::before, h1.htxtw::after {
  position: absolute;
  width: 95%;
  height: 1.25rem;
  content: '';
}

h1::before, h1.htxtw::before {
  border-left: solid 3px;
  border-top: solid 3px;
  top: 0;
  left: 0;
}

h1::after, h1.htxtw::after {
  border-right: solid 3px;
  border-bottom: solid 3px;
  bottom: 0;
  right: 0;
}

h2, h2.htxtw, h2.htxtwg {
  position:relative;
  padding: 0 clamp(0.625rem, -0.050rem + 1.406vw, 1.25rem) 0.5rem;
  margin: clamp(1.25rem, 0.575rem + 1.406vw, 1.875rem) 0 ;
  border-bottom:1px solid currentColor;
  color: #27499d;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 0.575rem + 1.406vw, 1.875rem);
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction : column;
}
h2::before, h2.htxtw::before, h2.htxtwg::before {
 content:'';
 position: absolute;
 top: 100%;
 left: 50%;
 transform: translateX(-50%) skew(-25deg);
 width: 0.9375rem;
 height: 0.9375rem;
 border-right: 1px solid currentColor;
 background-color: #fff !important;
 /*Lightning見出しデザイン設定のCSS対策*/
 border-left: none;
 border-top: unset;
 border-bottom: unset;
}
h2.htxtw, h2.htxtwg {
  color: #fff;
}
h2.htxtw::before {
  border-top: solid 1px #27499d;
  background-color: rgb(255 255 255 / 0.0) !important;
}
h2.htxtwg::before {
  border-top: solid 1px #999;
  background-color: rgb(255 255 255 / 0.0) !important;
}

p.maintxt, p.maintxt_w {
  padding: clamp(0.313rem, -0.025rem + 0.703vw, 0.625rem) clamp(0.625rem, -0.050rem + 1.406vw, 1.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.730rem + 0.563vw, 1.25rem);
  text-align: left;
}

p.maintxt_w {
  color: #fff;
}

p.sbtxt, p.sbtxt_w {
  padding: clamp(0.313rem, -0.025rem + 0.703vw, 0.625rem) clamp(0.625rem, -0.050rem + 1.406vw, 1.25rem);
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.720rem + 0.844vw, 1.5rem);
  border-bottom: solid 1px #ccc;
  text-align: center;
}

p.sbtxt_w {
  color: #fff;
}


/* --------------------------------------------------
   CONTENTS
----------------------------------------------------- */
#contents {
  width: 100%;
}
  @media screen and (max-width: 1024px) {
    #contents {
      overflow:hidden;}
  }

/* mainContents
-------------------------------------- */
.mainContents {
  width: 100%;
}

.contents_item {
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.25rem, -4.375rem + 11.719vw, 3.125rem) clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
}
  @media screen and (max-width:1025px){
    .contents_item {
      padding: 2.5rem 40px;}
  }
  @media screen and (max-width:768px){
    .contents_item {
      padding: 2.5rem 20px;}
  }

/* --- button iuputリセット pointer _CONTACT --- */
/* --- colrow _CONTACT --- */
.con_layout2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.con_layout2 .item {
  flex: 1;
  box-sizing: border-box;
  margin: 0 1rem;
  text-align: center;
}

  @media (max-width: 1024px) {
    .com_layout2 {
      display: block;
      flex-wrap: inherit;}
    .com_layout2 .item {
      width: auto;
      min-width: 100px;}
  }

button,
input[type="submit"] {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.btn-submit, .btn-submitg {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 14rem;
  height: clamp(3.125rem, 2.787rem + 0.703vw, 3.438rem);
  margin: 0.625rem auto ;
  padding: 0.5rem 1rem ;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.855rem + 0.563vw, 1.375rem);
  color: #fff;
  align-items: center;
  justify-content: center;
  overflow-wrap: anywhere;
}
.btn-submit {
  background-color: #27499d;
}
.btn-submitg {
  background-color: #777;
}

@media (any-hover: hover) {
  .btn-submit, .btn-submitg {
    transition: all 0.65s;
  }
  .btn-submit, .btn-submitg {
    padding-bottom: 5px;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 0 2px;
    transition: background-size 0.3s;
  }
  .btn-submit:hover, .btn-submitg:hover {
    background-position: bottom center;
    background-size: 100% 2px;
  }
}


/* --------------------------------------------------
   FOOTER
----------------------------------------------------- */
#footer {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
  padding: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
}
#footer img {
  width: clamp(1.875rem, 1.200rem + 1.406vw, 2.5rem);
  height: auto;
  margin-left: 1rem;
}

.footer-menu {
  display: flex;
  justify-content: flex-end;
}
.footer-menu ul {
  display: table;
  list-style: none;
}
.footer-menu ul li {
  display: table-cell;
  vertical-align: middle;
  padding-left: clamp(0.625rem, -0.050rem + 1.406vw, 1.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.480rem + 0.563vw, 1rem);
  text-align: center;
}

.footer-copy {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.480rem + 0.563vw, 1rem);
  color: #27499d;
  text-align: center;
  padding-top: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
}


/* --------------------------------------------------
   PAGETOP
----------------------------------------------------- */
.ScrollTop {
  position: fixed;
  display: flex;
  right: clamp(1.25rem, -2.801rem + 8.439vw, 5rem);
  bottom: 1.25rem;
  height: 50px;
  width: 50px;
  background: #27499d;
  border: solid 2px #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.65s;
}
.ScrollTop .p_arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
.ScrollTop.isActive {
  opacity: 1;
  transition: all 0.65s;
}



