@charset "UTF-8";
/*==========================================================================
Font
============================================================================*/
/*==========================================================================
Colors
============================================================================*/
/*==========================================================================
Line Height
==========================================================================*/
/*==========================================================================
Easings
==========================================================================*/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
/*===================================================================
    Transformicons
===================================================================*/
.tcon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.8em;
  background: transparent;
  outline: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tcon > * {
  display: block;
}

.tcon:hover, .tcon:focus {
  outline: none;
}

.tcon::-moz-focus-inner {
  border: 0;
}

.tcon-menu__lines {
  display: inline-block;
  height: 0.15em;
  width: 25px;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #050505;
  position: relative;
}

.tcon-menu__lines::before, .tcon-menu__lines::after {
  display: inline-block;
  height: 0.15em;
  width: 25px;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #050505;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 0.1607142857em center;
          transform-origin: 0.1607142857em center;
  width: 100%;
}

.tcon-menu__lines::before {
  top: 0.5em;
}

.tcon-menu__lines::after {
  top: -0.5em;
}

.tcon-transform .tcon-menu__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

.tcon:hover .tcon-menu__lines {
  background: #777;
}

.tcon:hover .tcon-menu__lines::before, .tcon:hover .tcon-menu__lines::after {
  background: #777;
}

.tcon-menu--xcross {
  width: auto;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before, .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0;
  width: 2.25em;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.tcon-visuallyhidden {
  border: 0;
  margin: 10px 0 0 0;
  color: #fff;
  height: 0.5rem;
}

.tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

#header {
  width: 100%;
  margin: 0px auto;
  padding: 0 2%;
  height: auto;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 200;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #F8F8F8;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  #header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0px auto;
    width: 100%;
    padding: 0% 2%;
    background: #F8F8F8;
    height: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 428px) {
  #header {
    width: 100%;
    padding: 0 2%;
  }
}
@media screen and (max-width: 960px) {
  #header .logo {
    width: 100%;
  }
}
#header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .logo h1 {
  font-size: clamp(11px, 1.2vw, 15px);
  padding: 0 0.5rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  #header .logo h1 {
    line-height: 1.5;
  }
}
#header .logo img {
  height: 45px;
  margin: 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  #header .logo img {
    width: 100%;
    height: auto;
    max-width: 60px;
  }
}
@media screen and (max-width: 428px) {
  #header .logo img {
    max-width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  #header .ui {
    width: auto !important;
  }
}
@media screen and (max-width: 960px) {
  #header .ham-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  #header .ham-btn .tcon-menu--xcross {
    font-size: 1rem;
  }
}
#header .Menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  #header .Menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#header .contact {
  padding: 0px;
  margin: 0 10px 0 0px;
  font-size: clamp(11px, 1.4vw, 18px);
  line-height: 1;
  white-space: nowrap;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  #header .contact {
    margin: 0 10px 0 0px;
  }
}
@media screen and (max-width: 428px) {
  #header .contact {
    margin: 0 5px 0 0px;
  }
}
#header .contact a {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: block;
  font-weight: 600;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  color: #fff;
  border-radius: 8px;
  background: #000;
}
@media screen and (max-width: 960px) {
  #header .contact a {
    display: block;
    border-radius: 4px;
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 428px) {
  #header .contact a {
    padding: 10px 8px;
    border: 1px solid #fff;
  }
}
#header .contact a:hover {
  opacity: 0.6;
  text-decoration: none;
}
#header .contact .entry {
  background: #f50000;
  border: none;
  padding: 12px 20px 12px 15px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #header .contact .entry {
    padding: 12px 15px 12px 8px;
  }
}
@media screen and (max-width: 428px) {
  #header .contact .entry {
    padding: 11px 14px 11px 8px;
  }
}
#header .contact .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 5px solid #fff;
}
#header .navW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .h_nav .g_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 0px 0 0;
  padding: 0;
}
@media screen and (max-width: 960px) {
  #header .h_nav .g_nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 0 0px 0 0;
  }
}
#header .h_nav .g_nav li {
  padding: 0px 0.5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  #header .h_nav .g_nav li {
    padding: 0.2rem 0;
  }
}
#header .h_nav .g_nav li a {
  padding: 0rem 0rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  font-size: clamp(12px, 1.3vw, 15px);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
#header .h_nav .g_nav li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
#header .h_nav .g_nav .here::after {
  position: absolute;
  content: "";
  display: block;
  top: -5px;
  border-top: 2px solid #1BC3A2;
  left: 10%;
  width: 80%;
}
@media screen and (max-width: 960px) {
  #header .h_nav .g_nav .here::after {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  #header .h_nav .g_nav .here a {
    color: #1BC3A2;
  }
}
@media screen and (max-width: 960px) {
  #header .h_nav {
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    background-color: #F8F8F8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0);
            transform: scale(0);
    overflow-y: auto;
    z-index: 1;
  }
  #header .h_nav .g_nav {
    text-align: center;
    margin: 0 0 1rem 0;
  }
  #header .h_nav .g_nav li {
    font-size: clamp(0.875rem, 0.836rem + 0.13vw, 1rem);
  }
  #header .h_nav .g_nav li a {
    padding: 0.5rem 0;
    font-weight: 500;
    display: block;
    color: #050505;
  }
}
@media screen and (max-width: 960px) {
  #header.nav_active .ham-btn .tcon-menu__lines::after, #header.nav_active .ham-btn .tcon-menu__lines::before {
    background-color: #050505;
  }
  #header.nav_active .h_nav {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#header .regist {
  color: #fff;
  background-color: #1BC3A2;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  font-size: clamp(13px, 1.3vw, 15px);
  text-align: center;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  #header .regist {
    position: fixed;
    bottom: 2%;
    left: 5%;
    width: 90%;
    margin: 0px;
    padding: 0.5rem 0rem;
    white-space: nowrap;
  }
}
#header .login {
  color: #fff;
  background-color: #218DDD;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: clamp(12px, 1.3vw, 15px);
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
#header .login .icon {
  width: 15px;
  padding: 0 5px 0 0;
}
@media screen and (max-width: 960px) {
  #header .login {
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
  }
}
#header .login .icon {
  width: 15px;
}

.sp .login {
  width: 90% !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 0rem !important;
  margin: 10px auto !important;
}

.sp .regist {
  position: relative !important;
  bottom: auto !important;
  left: 5% !important;
  padding: 0.5rem 0rem !important;
  display: block;
  width: 90%;
  margin: 20px auto;
}

.topheader {
  background: none !important;
}

.mypageHead {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
@media screen and (max-width: 960px) {
  .mypageHead {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
    padding: 0 2% !important;
    height: 100px !important;
    min-height: 100px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.mypageHead .mypageName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mypageHead .mypageName p {
  font-size: clamp(11px, 2.5vw, 15px);
  margin: 0;
}
@media screen and (max-width: 960px) {
  .mypageHead .mypageName {
    width: 100%;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/* ----------footer---------------------------------------------------------------------*/
footer {
  width: 100%;
  text-align: center;
  padding: 40px 0 20px 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  footer {
    padding: 20px 0 50px 0;
  }
}
footer .fmenu {
  font-family: "Noto Sans JP", serif;
  font-weight: 200;
  font-size: clamp(11px, 1.1vw, 13px);
  padding: 0 0 0px 0;
  text-align: center;
  font-weight: 300;
  line-height: 1.8;
  margin: 15px 0 0px 0;
}
footer .fmenu a {
  white-space: nowrap;
}
footer .contactW {
  background: #1BC3A2;
  width: 100%;
}
footer .contactW .inner {
  width: 960px;
  margin: 0 auto;
  padding: 30px 0 20px 0;
  color: #fff;
}
@media screen and (max-width: 960px) {
  footer .contactW .inner {
    padding: 20px 0;
    width: 90%;
  }
}
footer .contactW .inner .contBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .contactW .inner .contBox .addr {
  text-align: left;
  font-size: clamp(12px, 1.2vw, 14px);
}
footer .contactW .inner .contBox .addr strong {
  font-size: clamp(16px, 1.6vw, 20px);
  display: block;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .contBox .addr strong {
    line-height: 1.6;
  }
}
footer .contactW .inner .contBox .addr p {
  padding: 0;
  margin: 5px 0 0 0;
}
footer .contactW .inner .contBox .fcontact {
  text-align: center;
  width: 45%;
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .contBox .fcontact {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
footer .contactW .inner .contBox .fcontact p {
  margin: 5px 0;
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .contBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5px;
  }
}
footer .contactW .inner .attBox {
  border: 1px solid #fff;
  width: 100%;
  padding: 5px 20px;
  margin: 20px auto;
  text-align: left;
}
footer .contactW .inner .attBox p {
  font-size: clamp(11px, 1.2vw, 13px);
}
footer .contactW .inner .attBox .bannerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0 0 20px 0;
}
footer .contactW .inner .attBox .bannerBox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
footer .contactW .inner .attBox .bannerBox li p {
  padding: 0;
  margin: 0;
}
footer .contactW .inner .attBox .bannerBox li img {
  width: 200px;
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .attBox .bannerBox li img {
    width: 100px;
  }
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .attBox .bannerBox li {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  footer .contactW .inner .attBox .bannerBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin: 0 0 10px 0;
  }
}

.page-plan footer {
  padding: 40px 0 150px 0;
}
@media screen and (max-width: 960px) {
  .page-plan footer {
    padding: 20px 0 100px 0;
  }
}

.copyright {
  display: block;
  font-family: "Noto Sans JP", serif;
  z-index: 100;
  font-size: clamp(9px, 0.9vw, 12px);
  padding: 0.5rem 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .copyright {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 0px 0;
  }
}

body {
  color: #050505;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.01rem;
  font-size: clamp(15px, 1.5vw, 16px);
  background: #F8F8F8;
  overflow-y: auto;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

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

a {
  color: #050505;
  text-decoration: none;
  outline: none;
  font-weight: 400;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

a:visited {
  color: #050505;
  text-decoration: none;
  outline: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

a:hover {
  color: #050505;
  text-decoration: none;
  outline: none;
  opacity: 0.6;
}

a:active {
  color: #050505;
  text-decoration: none;
  outline: none;
  opacity: 0.6;
}

li {
  list-style: none;
}

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

address {
  font-style: normal;
  text-align: left;
}

/* ----------common parts---------------------------------------------------------------------
-------------------------------------------------------------------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

.sps {
  display: none;
}
@media screen and (max-width: 960px) {
  .sps {
    display: none;
  }
}
@media screen and (max-width: 428px) {
  .sps {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.textL {
  text-align: left;
}

.textC {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .textC {
    text-align: left;
  }
}

.center {
  text-align: center;
}

.textR {
  text-align: right;
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .w1000 {
    width: 100%;
  }
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .w1200 {
    width: 100%;
  }
}

.w100 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .w100 {
    width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mtb10 {
  display: inline-block;
  margin: 10px 0;
}

.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

.attTxt {
  display: block;
  width: 100%;
  font-size: clamp(22px, 2.2vw, 26px);
  color: #f50000;
  background: #fde0e0;
  line-height: 1.5;
  padding: 0.8rem;
  margin: 0.5rem auto;
  text-align: center;
}

.contactBtn a {
  background: #fff;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 22px);
  display: block;
  color: #1BC3A2;
  font-weight: 400;
  padding: 1rem 0;
  position: relative;
}

.mailicon {
  width: auto;
  height: 17px;
  padding: 0 0.4rem;
}

.LinkBtn {
  display: block;
}
.LinkBtn a {
  border-radius: 30px;
  width: auto;
  text-align: center;
  font-size: clamp(15px, 1.5vw, 16px);
  display: inline-block;
  color: #218DDD;
  font-weight: 400;
  padding: 0.8rem 3rem 0.8rem 2rem;
  position: relative;
  margin: 1rem 0;
  border: 2px solid #218DDD;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .LinkBtn a {
    padding: 0.5rem 3rem 0.5rem 2rem;
  }
}

.LinkBtn2 {
  display: block;
}
.LinkBtn2 a {
  border-radius: 30px;
  width: auto;
  text-align: center;
  font-size: clamp(14px, 1.4vw, 15px);
  display: inline-block;
  color: #1BC3A2;
  font-weight: 400;
  padding: 0.3rem 2rem 0.3rem 1rem;
  position: relative;
  margin: 0rem 0;
  border: 1px solid #218DDD;
  line-height: 1.5;
}
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.ad1::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1BC3A2;
}

.ad1::after {
  right: 27px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ad2::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #218DDD;
}

.ad2::after {
  right: 27px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ad3::after {
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #218DDD;
  border-right: 2px solid #218DDD;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#u-cont {
  text-align: center;
  padding: 100px 0 0px 0;
  /* ----------トップページ---------------------------------------------------------------------*/
}
@media screen and (max-width: 960px) {
  #u-cont {
    padding: 60px 0 0px 0;
  }
}
#u-cont .imgIn {
  width: 100%;
  margin: 40px auto;
}
@media screen and (max-width: 960px) {
  #u-cont .imgIn {
    margin: 20px auto;
  }
}
#u-cont .u-ttl {
  width: 96%;
  height: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #u-cont .u-ttl {
    height: 120px;
  }
}
#u-cont .u-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#u-cont .t-ttl {
  width: 96%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  #u-cont .t-ttl {
    height: 240px;
  }
}
#u-cont .t-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#u-cont .t-ttl strong {
  position: absolute;
  top: 50%;
  left: 5%;
  text-align: left;
  color: #fff;
  font-size: clamp(16px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.05rem;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media screen and (max-width: 960px) {
  #u-cont .t-ttl strong {
    left: 2%;
  }
}
#u-cont h2 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  display: block;
}
#u-cont h2 small {
  display: block;
  font-size: clamp(15px, 1vw, 16px);
  color: #CCCCCC;
}
#u-cont h3 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  display: block;
  position: relative;
  margin: 50px 0 20px 0;
}
#u-cont h3::after {
  position: absolute;
  content: "";
  display: block;
  border-top: 4px solid #1BC3A2;
  top: -10px;
  width: 40px;
}
@media screen and (max-width: 960px) {
  #u-cont h3 {
    margin: 30px 0 10px 0;
  }
  #u-cont h3::after {
    width: 30px;
  }
}
#u-cont h4 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  display: block;
  position: relative;
  margin: 20px 0 10px 0;
}
#u-cont h4::before {
  content: "●";
  padding: 0 0.4rem 0 0;
  font-size: clamp(15px, 1.5vw, 16px);
  color: #1BC3A2;
}
@media screen and (max-width: 960px) {
  #u-cont h4 {
    margin: 10px 0 5px 0;
  }
}
#u-cont h5 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04rem;
  display: block;
  color: #1BC3A2;
  margin: 10px 0 5px 0;
}
@media screen and (max-width: 960px) {
  #u-cont h5 {
    margin: 5px 0 2.5px 0;
  }
}
#u-cont .textUnderLine {
  text-decoration: underline;
}
#u-cont .textBRed {
  font-weight: 600;
  color: #f50000;
}
#u-cont .rtBox {
  margin: 20px auto 40px auto;
  width: 100%;
}
#u-cont .flowZu {
  width: 100%;
  margin: 20px auto 40px auto;
}
#u-cont .flowZu img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #u-cont .flowZu {
    margin: 10px auto 30px auto;
  }
  #u-cont .flowZu img {
    width: 90%;
    margin: 0 auto;
  }
}
#u-cont .flow {
  margin: 20px 20px;
}
#u-cont .flow dl {
  position: relative;
  border-left: 5px solid #1BC3A2;
  margin: 0;
}
#u-cont .flow dl span {
  display: block;
  position: absolute;
  top: 0;
  left: -27px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 28px);
  background: #1BC3A2;
  border-radius: 50px;
  line-height: 50px;
  font-weight: 500;
}
#u-cont .flow dl dt {
  padding: 0.5rem 0 0 2.5rem;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: #1BC3A2;
}
#u-cont .flow dl dd {
  padding: 1rem 0 1.5rem 0;
}
#u-cont .flow .dlBorderNone {
  border-left: 5px solid transparent;
}
#u-cont .video {
  position: relative;
  width: 80%;
  padding-top: 56.25%;
  height: 0;
  margin: 40px auto;
}
@media screen and (max-width: 960px) {
  #u-cont .video {
    margin: 20px auto;
  }
}
#u-cont .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#u-cont ul {
  margin: 5px auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  #u-cont ul {
    margin: 2.5px auto;
  }
}
#u-cont ul li {
  list-style: disc;
  list-style-position: outside;
  padding: 0;
  margin: 0.3rem 0 0.3rem 1.5rem;
}
#u-cont .listNum li {
  list-style: decimal !important;
}
#u-cont p {
  font-size: clamp(15px, 1.5vw, 16px);
  margin: 0;
  padding: 1rem 0 0.5rem 0;
}
#u-cont .uc {
  font-size: clamp(20px, 2vw, 22px);
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0 6rem 0;
}
#u-cont .p-m0 {
  padding: 0rem 0 0rem 0;
}
#u-cont .p-m0b1 {
  padding: 0rem 0 1rem 0;
}
#u-cont .linkB {
  color: #218DDD;
}
#u-cont .flexBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 10px 0;
  text-align: center;
}
#u-cont .flexBtn p {
  font-size: clamp(15px, 1.5vw, 16px);
  margin: 0 0 0.5rem 0;
  padding: 0;
}
@media screen and (max-width: 960px) {
  #u-cont .flexBtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#u-cont .doc-new {
  display: inline-block;
  font-size: clamp(11px, 1vw, 14px);
  color: #f50000;
  background: #ffe8e8;
  line-height: 1.2;
  padding: 0.2rem 0.3rem 0.3rem 0.3rem;
  margin: 0.1rem 0 0 0;
}
@media screen and (max-width: 960px) {
  #u-cont .doc-new {
    margin: 0.2rem 0 0 0;
  }
}
#u-cont .mt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: clamp(15px, 1.5vw, 16px);
  padding: 0.4rem 0;
  color: #218DDD;
  gap: 0.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  #u-cont .mt {
    gap: 0.3rem;
  }
}
#u-cont .mt img {
  width: 18px;
  height: auto;
}
#u-cont .mtEx {
  border: 1px solid #E0E0E0;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  margin: 20px 0;
  background: #fff;
}
@media screen and (max-width: 960px) {
  #u-cont .mtEx {
    margin: 10px 0;
  }
}
#u-cont .mtEx h4 {
  margin: 0 0 10px 0;
}
@media screen and (max-width: 960px) {
  #u-cont .mtEx h4 {
    margin: 0 0 5px 0;
  }
}
#u-cont .mi {
  width: 90%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
}
#u-cont .mi img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  #u-cont .mi {
    width: 100%;
    height: 200px;
  }
  #u-cont .mi img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#u-cont .u-pan {
  text-align: right;
  display: block;
  margin: 10px 0;
  font-size: clamp(13px, 1.3vw, 14px);
}
#u-cont .u-pan a {
  color: #218DDD;
}
#u-cont table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(15px, 1.5vw, 16px);
}
#u-cont table tr {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
#u-cont table th {
  width: 70%;
  padding: 0.5rem 1.5rem 0.5rem 0;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #u-cont table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 0.5rem 0 0 0;
  }
}
#u-cont table td {
  padding: 1rem 0;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #u-cont table td {
    display: block;
    width: 100%;
    border-bottom: none;
    border-top: none;
  }
}
#u-cont .infoT th {
  width: 16%;
  vertical-align: text-top;
  padding: 1rem 0;
}
@media screen and (max-width: 960px) {
  #u-cont .infoT th {
    width: 100%;
    padding: 1rem 0 0 0;
  }
}
#u-cont .infoT td a {
  color: #218DDD;
}
#u-cont .plan {
  margin: 0 0 2rem 0;
}
#u-cont .plan label {
  margin: 0;
}
#u-cont .plan th {
  width: 35%;
  background: #F7F7F7;
  padding: 1rem 1rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #u-cont .plan th {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }
}
#u-cont .plan td {
  padding: 1rem 1rem;
}
@media screen and (max-width: 960px) {
  #u-cont .plan td {
    width: 100%;
    padding: 0.5rem 1rem;
  }
}
#u-cont .borderNon {
  border: none;
}
#u-cont .borderTop {
  border-top: 1px solid #ebebeb;
}
#u-cont .borderBtm {
  border-bottom: 1px solid #ebebeb;
}
#u-cont .p0 {
  padding: 0 1rem !important;
}
@media screen and (max-width: 960px) {
  #u-cont .p0 {
    padding: 0.5rem 1rem !important;
  }
}
#u-cont .p05 {
  padding: 0.5rem 1rem !important;
}
@media screen and (max-width: 960px) {
  #u-cont .p05 {
    padding: 0.5rem 1rem !important;
  }
}
#u-cont .pt0 {
  padding: 0 1rem 1rem 1rem !important;
}
@media screen and (max-width: 960px) {
  #u-cont .pt0 {
    padding: 0.5rem 1rem !important;
  }
}
#u-cont .pb0 {
  padding: 1rem 1rem 0rem 1rem !important;
}
@media screen and (max-width: 960px) {
  #u-cont .pb0 {
    padding: 0.5rem 1rem !important;
  }
}
#u-cont .pb05 {
  padding: 1rem 1rem 0.5rem 1rem !important;
}
@media screen and (max-width: 960px) {
  #u-cont .pb05 {
    padding: 0.5rem 1rem !important;
  }
}
#u-cont .topNews {
  width: 1100px;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 960px) {
  #u-cont .topNews {
    width: 96%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto;
  }
}
#u-cont .topNews a {
  color: #218DDD;
}
#u-cont .topNews .tlt {
  border-right: 1px solid #E0E0E0;
  width: 25%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  #u-cont .topNews .tlt {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: none;
  }
}
#u-cont .topNews .tlt h2 {
  font-size: clamp(18px, 1.6vw, 20px);
  padding: 0 0.5rem;
}
@media screen and (max-width: 960px) {
  #u-cont .topNews .tlt h2 {
    padding: 0;
    margin: 0;
  }
}
#u-cont .topNews table {
  margin: 0 0 0 40px;
}
@media screen and (max-width: 960px) {
  #u-cont .topNews table {
    margin: 0;
  }
}
#u-cont .topNews table tr {
  border: none;
}
#u-cont .topNews table th {
  width: 20%;
  vertical-align: text-top;
  font-size: clamp(14px, 1.4vw, 15px);
}
@media screen and (max-width: 960px) {
  #u-cont .topNews table th {
    width: 100%;
  }
}
#u-cont .topNews table td {
  vertical-align: text-top;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 1.4vw, 15px);
}
#u-cont .topYosan {
  width: 100%;
  background: #E6EFF1;
  padding: 40px 0 60px 0;
}
@media screen and (max-width: 960px) {
  #u-cont .topYosan {
    padding: 30px 0 30px 0;
  }
}
#u-cont .topYosan h3 {
  text-align: center;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: clamp(20px, 2vw, 24px);
}
#u-cont .topYosan h3::after {
  border: none;
}
@media screen and (max-width: 960px) {
  #u-cont .topYosan h3 {
    margin: 0 0 5px 0;
  }
}
#u-cont .topYosan .inner {
  width: 1100px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  #u-cont .topYosan .inner {
    width: 96%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
#u-cont .topYosan .inner .box {
  width: 50%;
}
@media screen and (max-width: 960px) {
  #u-cont .topYosan .inner .box {
    width: 100%;
  }
}
#u-cont .topYosan .inner .box img {
  width: 100%;
}
#u-cont .topYosan .inner ul {
  text-align: left;
}
#u-cont .topYosan .inner ul span {
  font-size: clamp(14px, 1.84vw, 15px);
  line-height: 1.8;
  display: inline-block;
  padding: 0rem 0;
}
#u-cont .topYosan .inner ul li {
  list-style: none;
  padding: 0rem 0;
  margin: 0;
}
#u-cont .topList {
  margin: 0px auto 40px auto;
  width: 1100px;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #u-cont .topList {
    width: 96%;
  }
}
#u-cont .topList a {
  color: #218DDD;
}
#u-cont .topList li {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#u-cont .topList li img {
  width: 50%;
}
@media screen and (max-width: 960px) {
  #u-cont .topList li img {
    width: 100%;
  }
}
#u-cont .topList li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 960px) {
  #u-cont .topList li {
    margin: 10px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  #u-cont .topList li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#u-cont .topList li p strong {
  font-size: clamp(20px, 2vw, 24px);
  display: block;
  font-weight: 500;
  padding: 1rem 0;
}
#u-cont .mb_multiply {
  mix-blend-mode: multiply;
}
#u-cont .img-br20 {
  border-radius: 20px;
}

/* ----------マイページ---------------------------------------------------------------------*/
.mypageCont {
  background: #fff;
}
@media screen and (max-width: 960px) {
  .mypageCont {
    padding: 100px 0 0 0 !important;
  }
}
.mypageCont .fixShitagaki {
  position: fixed;
  bottom: 0%;
  left: 0%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0px;
  z-index: 2;
}
.mypageCont .fixShitagaki .btn-submit {
  padding: 10px 0;
}
.mypageCont .pan {
  background: #777;
  width: 100%;
  text-align: center;
  padding: 0.2rem 0.2rem;
  color: #fff;
  font-size: clamp(11px, 3vw, 14px);
  font-weight: 400;
}
.mypageCont .pan span {
  display: inline-block;
  padding: 0rem 0.5rem;
  white-space: nowrap;
}
.mypageCont .pan span a {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  color: #fff;
}
.mypageCont .pan span a:hover {
  opacity: 0.6;
}
.mypageCont .mypage {
  margin: 0 auto;
  padding: 20px 0 40px 0;
  width: 960px;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .mypageCont .mypage {
    width: 96%;
    padding: 0px 0 20px 0;
  }
}
.mypageCont .mypage h3 {
  background: #CCCCCC;
  padding: 0.5rem 1rem;
  font-size: clamp(15px, 1.5vw, 16px) !important;
  font-weight: 400 !important;
  width: 100%;
}
.mypageCont .mypage h3::after {
  border-top: none !important;
}
.mypageCont .mypage .oshirase {
  border: 2px solid #ebebeb;
  padding: 1rem 1.5rem 1rem 1.5rem;
}
.mypageCont .mypage .oshirase .tlt {
  font-weight: 500;
  padding: 0 0 0.5rem 0;
  display: block;
  margin: 0;
  font-size: clamp(15px, 1.5vw, 16px);
}
.mypageCont .mypage .oshirase ul {
  padding: 0;
  margin: 0;
}
.mypageCont .mypage .oshirase ul li {
  list-style: disc;
  list-style-position: outide;
  line-height: 1.6;
  margin: 0 0 0.5rem 1rem;
  font-size: clamp(13px, 3vw, 15px);
}
.mypageCont .msbBg {
  background: #F7F7F7;
  padding: 40px 40px;
}
@media screen and (max-width: 960px) {
  .mypageCont .msbBg {
    padding: 20px;
  }
}
.mypageCont .msg-past {
  border: 1px solid #CCCCCC;
  margin: 40px auto 20px auto;
  background: #fff;
}
.mypageCont .msg-past label {
  width: auto;
}
.mypageCont .msg-past .tit {
  background: #ebebeb;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 16px);
}
.mypageCont .msg-past .txtArea {
  padding: 20px;
  font-size: clamp(15px, 1.5vw, 16px);
}
@media screen and (max-width: 960px) {
  .mypageCont .msg-past .txtArea {
    padding: 10px 20px;
  }
}
.mypageCont .msg-past .txtArea p a {
  color: #218DDD;
}
.mypageCont .msg-past .attBox {
  background: #FDF2E3;
  padding: 1rem;
  margin: 2rem 0 0 0;
  font-size: clamp(12px, 3vw, 13px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  .mypageCont .msg-past .attBox {
    margin: 1rem 0;
  }
}
.mypageCont .msg-past .bgFix {
  background: #ebebeb;
}
.mypageCont .msg-past #attBtn {
  font-size: clamp(12px, 3vw, 13px);
  margin: 0 0 0 1rem;
  padding: 0.2rem 0.4rem;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
}
.mypageCont .msg-past .btnFix {
  background: #CCCCCC !important;
  color: #fff;
}
.mypageCont input[type=file] {
  display: none;
}
.mypageCont #btn1 {
  font-size: clamp(15px, 1.5vw, 16px);
  margin: 0 0 0 0rem;
  padding: 0.2rem 0.8rem;
  background: #777;
  color: #fff;
}
.mypageCont .custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: clamp(15px, 1.5vw, 16px);
  background: #fff;
  cursor: pointer;
  text-align: center;
  margin: 0;
  width: auto;
}
.mypageCont .fileSelectArea {
  background: #F7F7F7;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0px;
}
.mypageCont .fileSelectArea p {
  padding: 0;
  margin: 0 1rem;
  font-size: clamp(15px, 1.5vw, 16px);
}

.tetInd {
  text-indent: 1rem;
}
@media screen and (max-width: 960px) {
  .tetInd {
    text-indent: 0rem;
  }
}

.pagination {
  display: inline-block;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 960px) {
  .pagination {
    margin: 20px auto 0 auto;
  }
}

.pagination a {
  color: black;
  float: left;
  padding: 0.5rem 1rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 1px solid #ebebeb;
  font-size: clamp(13px, 3vw, 15px);
}

.pagination a.active {
  background-color: #777;
  color: #fff;
  border: 1px solid #777;
}

.pagination a:hover:not(.active) {
  background-color: #CCCCCC;
}

.aLink a {
  color: #218DDD;
}

/* ----------フォーム---------------------------------------------------------------------*/
.formCont {
  margin: 80px auto 80px auto;
  width: 960px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .formCont {
    margin: 40px auto 40px auto;
    width: 96%;
  }
}
@media screen and (max-width: 428px) {
  .formCont {
    margin: 20px auto;
  }
}
.formCont .copy {
  margin: 0px auto 40px auto;
}
@media screen and (max-width: 960px) {
  .formCont .copy {
    margin: 0px auto 20px auto;
  }
}
.formCont .copy p {
  line-height: 1.8;
}
.formCont .copy strong {
  font-size: clamp(24px, 2.4vw, 50px);
  font-family: "Roboto", serif;
  font-weight: 500;
  line-height: 1.4;
}
.formCont .copy strong small {
  font-size: 50%;
}
.formCont .copy span {
  display: block;
  font-size: clamp(15px, 1.5vw, 16px);
}
.formCont .contactForm {
  width: 100%;
  margin: 0px auto;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .formCont .contactForm {
    width: 100%;
  }
}
.formCont .contactForm--bg {
  margin: 0 0 40px 0;
  padding: 20px 40px 20px 40px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .formCont .contactForm--bg {
    margin: 0px;
    padding: 10px 20px;
  }
}
.formCont .contactForm p {
  margin: 1rem 0 0 0;
  display: inline-block;
  font-weight: 400;
}
.formCont .contactForm .midashi {
  display: block;
  padding: 0.5rem 1rem !important;
  background: #ebebeb;
}
.formCont .contactForm .midashi2 {
  display: block;
  padding: 1rem 0 0.5rem 0rem;
  font-weight: 500;
}
.formCont .contactForm .pp {
  height: 200px;
  width: 100%;
  display: block;
  overflow-y: scroll;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 15px);
}

.formContMt0 {
  margin: 0 auto 40px auto;
}

/*リセット */
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックスデザイン */
input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #cacaca;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
}

input[type=checkbox]::after {
  border-bottom: 3px solid #666464;
  border-left: 3px solid #666464;
  opacity: 0;
  height: 6px;
  width: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -6px;
  left: 10px;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

/* ラジオボタンデザイン */
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=radio] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #666464;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #666464;
  content: "";
}

.radioBtn {
  width: auto;
  display: inline-block;
  font-weight: 300;
  padding: 0 1rem 0 0;
}

/*セレクトボックス*/
.selectbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: auto !important;
}

.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.selectbox select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.8rem;
  padding: 0.4rem calc(0.8rem + 30px) 0.4rem 0.8rem;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1rem;
  cursor: pointer;
}

.cb {
  line-height: 1.8;
  margin: 0 0 0px 0;
  width: 70%;
}
@media screen and (max-width: 960px) {
  .cb {
    width: 100%;
  }
}

.cb label {
  display: inline !important;
}

input[type=text],
input[type=email],
input[type=tel] {
  background: #fff;
  border-radius: 3px;
  padding: 0.8rem 1.2rem;
  font-size: clamp(15px, 1.5vw, 16px);
  border: 1px solid #D0D0D0;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 960px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    padding: 0.5rem 1rem;
  }
}
.wpcf7-not-valid {
  background: #fde7e2 !important;
  border: 2px solid #C92F0A !important;
}

textarea {
  background: #fff;
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  font-size: clamp(15px, 1.5vw, 16px);
  border: 1px solid #D0D0D0;
  line-height: 1.8;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 960px) {
  textarea {
    padding: 0.5rem 1rem;
  }
}

.conBoxW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  margin: 20px auto 30px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .conBoxW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 10px auto 20px auto;
  }
}

.f_w100 {
  width: 100%;
  margin: 0px 0 0px 0;
}
@media screen and (max-width: 960px) {
  .f_w100 {
    width: 100%;
  }
}

.f_w100_2 {
  width: 100%;
  margin: 0px 0 0px 0;
}
@media screen and (max-width: 960px) {
  .f_w100_2 {
    width: 100%;
  }
}

.f_w30 {
  width: 30%;
  margin: 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .f_w30 {
    width: 20%;
  }
}

.f_w30_info {
  width: 60%;
  margin: 0rem 5px 0 0;
}
@media screen and (max-width: 960px) {
  .f_w30_info {
    width: 60%;
  }
}

.f_w30s {
  width: 30%;
  margin: 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .f_w30s {
    width: 25%;
  }
}
@media screen and (max-width: 428px) {
  .f_w30s {
    width: 17%;
  }
}

.f_w20 {
  width: 20%;
  margin: 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .f_w20 {
    width: 15%;
  }
}
@media screen and (max-width: 428px) {
  .f_w20 {
    width: 10%;
  }
}

.f_w100_naiyo {
  width: 80%;
  margin: 0px 0 0px 0;
}
@media screen and (max-width: 960px) {
  .f_w100_naiyo {
    width: 100%;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: "Noto Sans JP", serif;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: "Noto Sans JP", serif;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: "Noto Sans JP", serif;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999;
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: "Noto Sans JP", serif;
}

input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: clamp(15px, 1.5vw, 16px);
  font-family: "Noto Sans JP", serif;
}

label {
  display: inline-block;
  margin: 5px 0 10px 0;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  label {
    width: 100%;
  }
}
label .hissu {
  color: #DE1F1F;
}

.inputCont {
  width: 65%;
}
@media screen and (max-width: 960px) {
  .inputCont {
    width: 100%;
  }
}

.inputCont2 {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .inputCont2 {
    width: 100%;
  }
}

.checkboxW {
  width: 60%;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 960px) {
  .checkboxW {
    width: 100%;
  }
}

span.wpcf7-list-item {
  display: block;
}

.loginCont {
  width: 720px;
}
@media screen and (max-width: 960px) {
  .loginCont {
    width: 96%;
  }
}
.loginCont .contactForm label {
  width: 20%;
}
@media screen and (max-width: 960px) {
  .loginCont .contactForm label {
    width: 100%;
  }
}
.loginCont .contactForm .inputCont {
  width: 75%;
}
@media screen and (max-width: 960px) {
  .loginCont .contactForm .inputCont {
    width: 100%;
  }
}
.loginCont .contactForm--bg {
  padding: 20px 60px;
}
@media screen and (max-width: 960px) {
  .loginCont .contactForm--bg {
    padding: 10px 20px;
  }
}

.loginCont2 {
  width: 820px;
}
@media screen and (max-width: 960px) {
  .loginCont2 {
    width: 96%;
  }
}
.loginCont2 .contactForm label {
  width: 20%;
}
@media screen and (max-width: 960px) {
  .loginCont2 .contactForm label {
    width: 100%;
  }
}
.loginCont2 .contactForm .inputCont {
  width: 75%;
}
@media screen and (max-width: 960px) {
  .loginCont2 .contactForm .inputCont {
    width: 100%;
  }
}
.loginCont2 .contactForm--bg {
  padding: 20px 60px;
}
@media screen and (max-width: 960px) {
  .loginCont2 .contactForm--bg {
    padding: 10px 20px;
  }
}

.loginAtt {
  padding: 0;
  margin: 0 0 10px 0;
  display: block;
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 400;
  text-align: left;
}
.loginAtt a {
  color: #218DDD;
}

/* ----------ボタン共通---------------------------------------------------------------------*/
label span {
  display: inline-block;
  background: #C92F0A;
  color: #fff;
  margin: 0 5px;
  padding: 0.1rem 0.3rem;
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 14px);
}

.hissuT {
  display: inline-block;
  background: #C92F0A;
  color: #fff;
  margin: 0 5px;
  text-indent: 0;
  padding: 0.1rem 0.3rem;
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 14px);
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.btn-submit {
  display: block;
  width: 40%;
  font-size: clamp(18px, 1.8vw, 20px);
  margin: 40px auto;
  background: #218DDD;
  padding: 1.2rem 0rem;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  border: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn-submit a {
  color: #fff;
}
.btn-submit:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .btn-submit {
    width: 80%;
    padding: 1.2rem 0rem;
    margin: 20px auto;
  }
}

.colorGreen {
  background: #1BC3A2;
}

.btn1 {
  border: 2px solid #777;
  background: #fff;
  border-radius: 5px;
  padding: 0.1rem 0.5rem;
  font-size: clamp(11px, 1.1vw, 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn1:hover {
  opacity: 0.6;
  text-decoration: none;
}
.btn1 img {
  width: 15px;
}
@media screen and (max-width: 960px) {
  .btn1 img {
    width: 12px;
  }
}

.orengeM {
  background: #F08100 !important;
}

/*マイページ*/
.infoTable {
  margin: 5px auto;
  padding: 5px 0 10px 0;
  border-bottom: 1px solid #CCCCCC;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.infoTable label {
  margin: 0;
}
@media screen and (max-width: 960px) {
  .infoTable label {
    margin: 0 0 5px 0;
  }
}
.infoTable input[type=text] {
  padding: 0.2rem 0.4rem 0.3rem 0.4rem;
}

.inputContInfo {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .inputContInfo {
    width: 100%;
  }
}

.inputContInfo2 {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .inputContInfo2 {
    width: 100%;
  }
}

.btn-submits {
  display: block;
  width: auto;
  font-size: clamp(14px, 1.4vw, 15px);
  background: #1BC3A2;
  padding: 0.4rem 0.6rem !important;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  border: none;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn-submits a {
  color: #fff;
}
.btn-submits:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .btn-submits {
    padding: 0.5rem 0rem;
  }
}

/* アコーディオン全体のスタイリング */
.accordion {
  border: 1px solid #ddd;
  padding: 10px 10px;
  margin-bottom: 20px;
}

.qaW {
  margin-top: 20px;
}

.qaLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 20px auto 40px auto !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .qaLink {
    margin: 10px auto 40px auto !important;
  }
}
.qaLink li {
  list-style: none !important;
  margin: 0 !important;
}
.qaLink li a {
  background: #fff;
  font-size: clamp(14px, 1.4vw, 16px);
  display: inline-block;
  padding: 0.6rem 2rem 0.6rem 1.5rem;
  position: relative;
  color: #050505 !important;
}
.qaLink li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #050505;
  border-right: 2px solid #050505;
  -webkit-transform: translateY(-2px) rotate(135deg);
          transform: translateY(-2px) rotate(135deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* アコーディオンのヘッダー部分のスタイリング */
.accordion-header {
  padding: 0;
  cursor: pointer;
  outline: none;
  font-weight: 400;
  position: relative;
  list-style: none;
}

.qa_q {
  padding: 0 2rem 0 0.5rem !important;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
}
.qa_q span {
  padding: 0 0.2rem 0 0;
}

.qa_a {
  padding: 0 2rem 0 0.6rem !important;
  margin: 0;
  /*color: $baseColorLv4;*/
  color: #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qa_a span {
  padding: 0 0.2rem 0 0;
}

/* アコーディオンのコンテンツ部分のスタイリング */
.accordion-content {
  padding: 1rem 1rem 0 1rem;
}
@media screen and (max-width: 960px) {
  .accordion-content {
    padding: 1rem 0;
  }
}

.qaW .accordion-content {
  padding: 1rem 0;
}
@media screen and (max-width: 960px) {
  .qaW .accordion-content {
    padding: 0;
  }
}

/* カスタム矢印のスタイル */
.accordion-header::after {
  content: "▼";
  position: absolute;
  top: 3px;
  right: 10px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  font-size: 0.8rem;
}

/* アコーディオンが開いている時の矢印のスタイル */
.accordion[open] .accordion-header::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); /* 矢印を180度回転 */
}

/* WebKitベースのブラウザでデフォルトの矢印を消す */
.accordion .accordion-header::-webkit-details-marker {
  display: none;
}

/* アコーディオン全体のスタイリング2 */
.accordion2 {
  border: 1px solid #ddd;
  padding: 10px 10px;
  margin-bottom: 20px;
}

.qaW {
  margin-top: 20px;
}

.qaLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 20px auto 40px auto !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .qaLink {
    margin: 10px auto 40px auto !important;
  }
}
.qaLink li {
  list-style: none !important;
  margin: 0 !important;
}
.qaLink li a {
  background: #fff;
  font-size: clamp(14px, 1.4vw, 16px);
  display: inline-block;
  padding: 0.6rem 2rem 0.6rem 1.5rem;
  position: relative;
  color: #050505 !important;
}
.qaLink li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #050505;
  border-right: 2px solid #050505;
  -webkit-transform: translateY(-2px) rotate(135deg);
          transform: translateY(-2px) rotate(135deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* アコーディオンのヘッダー部分のスタイリング */
.accordion-header2 {
  padding: 0;
  cursor: pointer;
  outline: none;
  font-weight: 400;
  position: relative;
  list-style: none;
}

.qa_q {
  padding: 0 2rem 0 0.5rem !important;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
}
.qa_q span {
  padding: 0 0.2rem 0 0;
}

.qa_a {
  padding: 0 2rem 0 0.6rem !important;
  margin: 0;
  /*color: $baseColorLv4;*/
  color: #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qa_a span {
  padding: 0 0.2rem 0 0;
}

/* アコーディオンのコンテンツ部分のスタイリング */
.accordion-content2 {
  padding: 1rem 1rem 0 1rem;
}
@media screen and (max-width: 960px) {
  .accordion-content2 {
    padding: 1rem 0;
  }
}

.qaW .accordion-content2 {
  padding: 1rem 0;
}
@media screen and (max-width: 960px) {
  .qaW .accordion-content2 {
    padding: 0;
  }
}

/* カスタム矢印のスタイル */
.accordion-header2::after {
  content: "▽";
  position: absolute;
  top: 3px;
  right: 10px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  font-size: 0.8rem;
}

/* アコーディオンが開いている時の矢印のスタイル */
.accordion2[open] .accordion-header2::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); /* 矢印を180度回転 */
}

/* WebKitベースのブラウザでデフォルトの矢印を消す */
.accordion .accordion-header2::-webkit-details-marker {
  display: none;
}

/*# sourceMappingURL=style.css.map */