@charset "UTF-8";
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

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

body {
  background: #FFFFF;
  margin: 0;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 640px;
  }
}

.container--small {
  max-width: 960px;
}

img {
  display: block;
  -webkit-backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
/*border*/
.bor-r-2 {
  border-radius: 2px;
}

.bor-r-4 {
  border-radius: 4px;
}

.bor-r-8 {
  border-radius: 8px;
}

.bor-r-16 {
  border-radius: 16px;
}

.bor-r-24 {
  border-radius: 24px;
}

.bor-c-orange {
  border-color: #ff6600;
}

/*margin*/
.mar-t-0 {
  margin-top: 0px;
}

.mar-t-16 {
  margin-top: 16px;
}

.mar-b-0 {
  margin-bottom: 0px;
}

.mar-b-16 {
  margin-bottom: 16px;
}

/*padding*/
.pad-0 {
  padding: 0px;
}

/*##text##*/
.tex-a-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .tex-a-center-tab {
    text-align: center;
  }
}

/*##文字##*/
big {
  font-size: 1.2em;
}

.col-white {
  color: #ffffff;
}

.col-orange {
  color: #FF6600;
}

.col-bluegreen {
  color: #75C5C8;
}

.col-red {
  color: #FF5852;
}

.fon-w-bold {
  font-weight: bold;
}

.fon-s-20 {
  font-size: 2rem;
}

.fon-s-24 {
  font-size: 2.4rem;
}

/**リンク**/
span {
  display: inline-block;
}

.articles__text span {
  display: inline;
}

/*## H1～5 ##*/

/*##color##*/
.bac-c-black {
  background-color: #000;
}

.bac-c-white {
  background-color: #fff;
}

.bac-c-baige {
  background-color: #FAF5EE;
}

.bac-c-pink {
  background-color: #FFD9E5;
}

.bac-c-gray {
  background-color: #E8E8E8;
}

.bac-c-blue {
  background-color: #F2F2FC;
}

.bac-c-navy {
  background-color: #1B2575;
}

.bac-c-orange {
  background-color: #FF6600;
}

.bac-c-paleorange {
  background-color: #F9EBE1;
}

.bac-c-bluegreen {
  background-color: #75c5c8;
}

/*テーブル*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*フォーム*/
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=time],
textrarea,
select {
  border: 1px solid;
}

/*【リスト】*/
li {
  list-style: disc;
  list-style-position: inside;
  margin-left: 0em;
}

dt {
  position: relative;
}
dt:before, dt:after {
  content: "";
  width: 12px;
  height: 3px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
  display: block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
dt:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
dt.active:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

/*
dt:after {
	  content: "";
	  width: 8px;
	  height: 8px;
	  border-top: 2px solid #fff;
	  border-right: 2px solid #fff;
	  position: absolute;
	  right: 16px;
	  top: 50%;
	  -webkit-transform: translateY(-50%) rotate(-45deg);
	          transform: translateY(-50%) rotate(-45deg);
	  -webkit-transition: 0.5s ease;
	  transition: 0.5s ease;
}


dt.active:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
*/
dd {
  display: none;
}

dd p {
  display: inline-block;
}

/*【Swiper】*/
.swiper-pagination-progressbar {
  width: 100%;
  height: 8px;
  bottom: 0px;
  left: 0px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #000;
}

.swiper-pagination-bullets {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #fff;
  margin: 4px;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 18px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: calc(100vw / 768 * 18);
  }
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 18px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: calc(100vw / 768 * 18);
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 32px !important;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: calc(100vw / 768 * 32) !important;
  }
}

/*header*/
header {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
header.is-fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1000;
}

/*hamburger*/
.hamburger.active {
  pointer-events: auto;
}
.hamburger {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 10000;
  pointer-events: none;
}
@media screen and (max-width: 920px) {
  .hamburger {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.hamburger dt {
  position: absolute;
  left: calc(100vw / 768 * 16);
  top: 0;
  width: calc(100vw / 768 * 40);
  height: 48px;
  pointer-events: all;
  z-index: 1;
}
.hamburger dt hr {
  width: 100%;
  border: 1px solid;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: c18px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  max-width: 24px;
}
.hamburger dt hr:nth-of-type(1) {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
}
.hamburger dt hr:nth-of-type(3) {
  -webkit-transform: translate(-50%, calc(-50% + 6px));
          transform: translate(-50%, calc(-50% + 6px));
}
.hamburger dt:before,
.hamburger dt:after {
  display: none;
}
.hamburger dt.active hr:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.hamburger dt.active hr:nth-of-type(2) {
  display: none;
}
.hamburger dt.active hr:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger dd {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0px;
  background: #EECE00;
  display: none;
  text-align: center;
}
.hamburger dd .hamburger__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 16px;
}
.hamburger dd .hamburger__nav .nav__link a {
  color: initial;
  font-size: 20px;
}

/*【flexbox】*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
}

/*##gap##*/
.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}
