@charset "UTF-8";
/* -------------------------------------
       base
-----------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default font-wight */
h1,
h2,
h3,
h4,
dt {
  font-weight: normal;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make img easier to work with */
img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur img when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

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

.onliy-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .onliy-sp {
    display: block !important;
  }
}

.onliy-tbsp {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .onliy-tbsp {
    display: inline-block !important;
  }
}

/* FontFamily */
/* font-weight */
body {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  color: #444;
  letter-spacing: 0;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

body {
  line-height: 1.8;
  letter-spacing: 0;
  background-color: #fff;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: inherit;
  cursor: pointer;
}

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

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.l-inner {
  max-width: 1126px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 600px !important;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 375px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

button:focus {
  outline: none;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

.bg-color01 {
  background-color: #FFF9E3 !important;
}

.bg-color02 {
  background-color: #F8F8F7 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

@media screen and (max-width: 767px) {
  .sp-mb-30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-mb-60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-letter-s500 {
    letter-spacing: 0.5em;
  }
}

/* -------------------------------------
       module
-----------------------------------------*/
/* -------------------------------------
        header
-----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 114px;
  background-color: #fff;
  z-index: 300;
}

@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1126px;
  height: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 375px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header__logo:hover, .header__logo:focus {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__logo-link {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #666;
  font-size: 1.2rem;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .header__logo-link {
    font-size: 1rem;
  }
}

.header__logo-img {
  display: block;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .header__logo-img {
    max-width: 158px;
    width: 100%;
    margin-top: 2px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1050px) {
  .header__container {
    display: none;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 112px;
}

.header-nav__item {
  position: relative;
}

.header-nav__item:last-child .header-nav__link {
  padding-right: 0;
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav__link:hover, .header-nav__link:focus {
  opacity: 0.7;
}

.header-nav__child {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  padding: 12px 0px;
}

.header-nav__child-link {
  display: block;
  width: auto;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 7px 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .header-nav__child-link {
    padding: 4px 2px;
  }
}

.header-nav__child-link:hover, .header-nav__child-link:focus {
  opacity: 0.7;
}

.has-child:hover > ul, .has-child:active > ul {
  visibility: visible;
  opacity: 1;
}

.hamburger-btn {
  display: none;
}

@media screen and (max-width: 1050px) {
  .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    z-index: 1000;
  }
}

.hamburger-btn__inner {
  position: relative;
  width: 34px;
  height: 28px;
}

@media screen and (max-width: 767px) {
  .hamburger-btn__inner {
    width: 19px;
    height: 15px;
  }
}

.hamburger-btn__inner span {
  position: absolute;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
  display: block;
  width: 100%;
  height: 1px;
  background: #877067;
}

.hamburger-btn__inner span:nth-of-type(1) {
  width: 100%;
  top: 0;
}

.hamburger-btn__inner span:nth-of-type(2) {
  top: 50%;
  right: 0;
}

.hamburger-btn__inner span:nth-of-type(3) {
  bottom: 0;
}

.sub-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  -webkit-transition: .15s;
  transition: .15s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

@media screen and (max-width: 1050px) {
  .sub-nav {
    margin-top: 112px;
    background-color: #FFF9E3;
  }
}

@media screen and (max-width: 767px) {
  .sub-nav {
    display: none;
    opacity: 0;
    height: 140vh;
    min-height: auto;
    overflow-y: auto;
    margin-top: 70px;
  }
}

.sub-nav__logo {
  position: absolute;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .sub-nav__logo {
    display: none;
  }
}

.sub-nav__logo-link {
  display: block;
  width: 173px;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .sub-nav__logo-link {
    display: none;
  }
}

.sub-nav__inner {
  width: 100%;
  max-width: 700px;
  height: 100%;
  padding-top: 60px;
}

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

@media screen and (max-width: 767px) {
  .sub-nav__list-wrap {
    display: block;
  }
  .sub-nav__list-wrap:last-child {
    padding-bottom: 20px;
  }
}

.sub-nav__list-wrap:not(:last-child) {
  margin-bottom: 77px;
}

@media screen and (max-width: 767px) {
  .sub-nav__list-wrap:not(:last-child) {
    margin-bottom: 0;
  }
}

.sub-nav__list {
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #8ED4D8;
}

.sub-nav__title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sub-nav__title {
    position: relative;
  }
}

.sub-nav__title--has-child {
  padding: 20px 12px;
}

.sub-nav__title--has-child span {
  position: relative;
}

.sub-nav__title--has-child span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -18px;
  content: '';
  display: inline-block;
  width: 9px;
  height: 6px;
  background-image: url(/assets/img/icon/icon_arrow01.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.sub-nav__link {
  display: block;
  padding: 20px 12px;
}

.sub-nav__link--en {
  font-family: "Roboto", sans-serif;
}

.sub-nav__item {
  position: relative;
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sub-nav__item:hover, .sub-nav__item:focus {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-nav__item:first-child .sub-nav__child-link {
  padding-top: 0;
}

.sub-nav__items {
  display: none;
}

@media screen and (max-width: 767px) {
  .sub-nav__items {
    text-align: center;
    padding: 0 10px 17px;
  }
}

.sub-nav__child-link {
  display: block;
  padding: 11px;
}

.header.active .hamburger-btn span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.header.active .hamburger-btn span:nth-of-type(2) {
  width: 0;
  -webkit-transition: .01s;
  transition: .01s;
}

.header.active .hamburger-btn span:nth-of-type(3) {
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .header.active .topheader-logo-link {
    background-image: none;
  }
}

.header.active .sub-nav {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .sub-nav.visible {
    display: block;
    opacity: 1;
    -webkit-animation: fadeIn 0.2s ease-in 0s forwards;
            animation: fadeIn 0.2s ease-in 0s forwards;
  }
  @-webkit-keyframes fadeIn {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
    }
    100% {
      display: block;
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
    }
    100% {
      display: block;
      opacity: 1;
    }
  }
}

/* -------------------------------------
        footer
-----------------------------------------*/
.footer {
  background-color: #F8F8F7;
}

.footer__container {
  color: #222;
  padding: 64px 0 44px;
}

@media screen and (max-width: 767px) {
  .footer__container {
    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;
    padding: 54px 0 60px;
  }
}

.footer__title {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .footer__info {
    display: block;
    margin-bottom: 16px;
  }
}

.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer__info-item:not(:last-child) {
  margin-right: 80px;
}

@media screen and (max-width: 767px) {
  .footer__info-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.footer__info-item::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 9px;
}

.footer__info-item--tel::before {
  background-image: url(/assets/img/common/icon_tel.svg);
}

.footer__info-item--mail::before {
  background-image: url(/assets/img/common/icon_mail.svg);
}

.footer__copyright {
  font-size: 1.4rem;
  text-align: center;
}

.footer-nav {
  background-color: #8ED4D8;
  padding: 28px 0;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    padding: 30px 0 60px;
  }
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer-nav__list {
    display: block;
    margin: -10px 0 -0px 30px;
  }
}

.footer-nav__link {
  display: inline-block;
  color: #FFF;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 0 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .footer-nav__link {
    padding: 10px 0;
  }
}

.footer-nav__link:hover, .footer-nav__link:focus {
  opacity: 0.7;
}

.footer-nav__link--en {
  font-family: "Roboto", sans-serif;
}

/* -------------------------------------
        section-title
-----------------------------------------*/
.section-title {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.section-title::after {
  content: '';
  display: block;
  width: 57px;
  height: 10px;
  background-image: url(/assets/img/common/icon_dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 24px auto 0;
}

@media screen and (max-width: 767px) {
  .section-title::after {
    width: 42px;
    height: 7px;
    margin: 18px auto 0;
  }
}

.section-title--s {
  font-size: 2.4rem;
}

.section-sub-title {
  display: inline-block;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .section-sub-title {
    font-size: 1.1rem;
    margin-top: 18px;
  }
}

/* -------------------------------------
        section-title02
-----------------------------------------*/
.section-title02 {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title02 {
    font-size: 1.8rem;
  }
}

.text-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(35%, #FFCED5));
  background: linear-gradient(transparent 65%, #FFCED5 35%);
  line-height: 1.2;
  padding: 0 2px;
}

.text-line--color01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(35%, #FFCED5));
  background: linear-gradient(transparent 65%, #FFCED5 35%);
}

.text-line--color02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(35%, #B7ECEF));
  background: linear-gradient(transparent 65%, #B7ECEF 35%);
}

/* -------------------------------------
        btn
-----------------------------------------*/
.btn {
  display: block;
  position: relative;
  width: 100%;
  background-color: #8ED4D8;
  border: 5px solid #8ED4D8;
  border-radius: 14px;
  color: #fff;
  text-align: center;
}

.btn::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  content: '';
  display: inline-block;
  width: 16px;
  height: 26px;
  background-image: url(/assets/img/common/icon_right02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .btn::after {
    right: 6.5%;
  }
}

@media screen and (max-width: 340px) {
  .btn::after {
    right: 3%;
  }
}

.btn:hover.btn::after, .btn:focus.btn::after {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

.btn__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 5px solid transparent;
  border-radius: 10px;
  padding: 22px 46px 22px 27px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.btn__content:hover, .btn__content:focus {
  border: 5px solid #8ED4D8;
}

@media screen and (max-width: 767px) {
  .btn__content {
    padding: 9px 16px;
  }
}

@media screen and (max-width: 340px) {
  .btn__content {
    padding: 9px 14px;
  }
}

.btn__img {
  width: 32%;
  max-width: 131px;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .btn__img {
    width: 24.85%;
    margin-right: 7.5%;
  }
}

@media screen and (max-width: 340px) {
  .btn__img {
    margin-right: 4%;
  }
}

.btn__text {
  color: #444;
  font-size: 2.8rem;
  line-height: 1.6;
  text-align: left;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .btn__text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 340px) {
  .btn__text {
    font-size: 1.6rem;
  }
}

.btn__text span {
  display: block;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .btn__text span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 340px) {
  .btn__text span {
    font-size: 1.2rem;
  }
}

/* -------------------------------------
        btn02
-----------------------------------------*/
.btn02 {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 6px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 18px 8px;
}

@media screen and (max-width: 767px) {
  .btn02 {
    font-size: 1.4rem;
    padding: 22px 8px;
  }
}

.btn02:hover, .btn02:focus {
  opacity: 0.7;
}

.btn02--color01 {
  background-color: #F8A8B3;
}

.btn02--color02 {
  background-color: #77CCD1;
}

/* -------------------------------------
       under-mv
-----------------------------------------*/
.under-mv {
  width: 100%;
  height: 216px;
  background-color: #FFF9E3;
  margin-top: 112px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .under-mv {
    margin-top: 70px;
    height: 120px;
    padding: 0;
  }
}

.under-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 1175px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .under-mv__inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.under-mv__inner::before, .under-mv__inner::after {
  content: '';
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.under-mv__inner::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 204px;
  height: 148px;
  background-image: url(/assets/img/common/under-mv_bg01.png);
}

@media screen and (max-width: 767px) {
  .under-mv__inner::before {
    left: 3%;
    width: 58px;
    height: 92px;
    background-image: url(/assets/img/common/under-mv_bg01-sp.png);
  }
}

.under-mv__inner::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 230px;
  height: 159px;
  background-image: url(/assets/img/common/under-mv_bg02.png);
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .under-mv__inner::after {
    right: 3%;
    width: 52px;
    height: 90px;
    background-image: url(/assets/img/common/under-mv_bg02-sp.png);
  }
}

.under-mv__title {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .under-mv__title {
    font-size: 2.3rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 300px) {
  .under-mv__title {
    font-size: 2.1rem;
  }
}

/* -------------------------------------
        breadcrumb
-----------------------------------------*/
.breadcrumb {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding-top: 38px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__inner {
  max-width: 940px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__top {
  white-space: nowrap;
}

.breadcrumb__link:hover {
  opacity: 0.7;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.breadcrumb__icon {
  display: inline-block;
  width: 4px;
  height: 1px;
  background-color: #444;
  margin: 0 10px;
}

.current-item {
  color: #444;
  white-space: nowrap;
}

/* -------------------------------------
      common-text
-----------------------------------------*/
.common-text {
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.common-text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .common-text {
    font-size: 1.4rem;
  }
}

.common-text--pc-bold {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .common-text--pc-bold {
    font-weight: 400;
  }
}

/* -------------------------------------
        image-item
-----------------------------------------*/
.image-item {
  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;
  background-color: #F8F8F7;
}

/* -------------------------------------
        dl-btn
-----------------------------------------*/
.dl-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px 8px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .dl-btn {
    max-height: 68px;
    padding: 14px 6px;
  }
}

@media screen and (max-width: 350px) {
  .dl-btn {
    font-size: 1.2rem;
  }
}

.dl-btn:hover, .dl-btn:focus {
  opacity: 0.7;
}

.dl-btn__item-text {
  position: relative;
  line-height: 1.3;
}

.dl-btn .text-sm {
  font-size: 1.2rem;
}

@media screen and (max-width: 350px) {
  .dl-btn .text-sm {
    font-size: 1rem;
  }
}

.dl-btn::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .dl-btn::before {
    margin-right: 3%;
  }
}

.dl-btn--icon01::before {
  width: 17px;
  height: 20px;
  background-image: url(/assets/img/common/icon-pdf.svg);
}

@media screen and (max-width: 767px) {
  .dl-btn--icon01::before {
    width: 20px;
    height: 24px;
  }
}

.dl-btn--icon02::before {
  width: 20px;
  height: 20px;
  background-image: url(/assets/img/common/icon-excel.svg);
}

@media screen and (max-width: 767px) {
  .dl-btn--icon02::before {
    min-width: 21px;
    min-height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .dl-btn--sp-larg {
    font-size: 1.6rem;
  }
}

.btn-color01 {
  background-color: #F8A8B3;
}

.btn-color02 {
  background-color: #77CCD1;
}

/* -------------------------------------
        icon-btn
-----------------------------------------*/
.icon-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 468px;
  width: 100%;
  background-color: #F8A8B3;
  border-radius: 6px;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 27px 8px 27px 30px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.icon-btn:hover, .icon-btn:focus {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .icon-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.4rem;
    padding: 12px 44px 12px 8px;
  }
}

@media screen and (max-width: 340px) {
  .icon-btn {
    font-size: 1.2rem;
  }
}

.icon-btn .text-sm {
  display: inline-block;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .icon-btn .text-sm {
    font-size: 1rem;
  }
}

.icon-btn__text {
  position: relative;
  line-height: 1.3;
}

.icon-btn::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 26px;
  background-image: url(/assets/img/common/icon-pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.icon-btn::after {
  position: absolute;
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.icon-btn--icon01::after {
  top: -22px;
  right: 20px;
  width: 45px;
  height: 78px;
  background-image: url(/assets/img/common/btn_icon03.png);
}

@media screen and (max-width: 767px) {
  .icon-btn--icon01::after {
    width: 42px;
    height: 71px;
    right: 19px;
  }
}

@media screen and (max-width: 340px) {
  .icon-btn--icon01::after {
    right: 3px;
  }
}

.icon-btn--icon02::after {
  top: -25px;
  right: 8px;
  width: 74px;
  height: 56px;
  background-image: url(/assets/img/common/btn_icon04.png);
}

@media screen and (max-width: 767px) {
  .icon-btn--icon02::after {
    top: -10px;
    width: 52px;
    height: 40px;
  }
}

@media screen and (max-width: 340px) {
  .icon-btn--icon02::after {
    width: 40px;
    height: 30px;
  }
}

/* -------------------------------------
        media
-----------------------------------------*/
.media__img {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .media__img {
    margin-bottom: 10px;
  }
}

.media__text {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .media__text {
    font-size: 1.4rem;
  }
}

/* -------------------------------------
        list
-----------------------------------------*/
.list {
  padding-left: 0.6em;
}

@media screen and (max-width: 767px) {
  .list {
    padding-left: 1.2em;
  }
}

.list__item {
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-indent: -0.6em;
}

.list__item:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .list__item:not(:last-child) {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767px) {
  .list__item {
    font-size: 1.4rem;
    line-height: 1.6;
    text-indent: -0.8em;
  }
}

.list__item::before {
  content: "";
  width: 3px;
  height: 3px;
  display: inline-block;
  background-color: #444;
  border-radius: 50%;
  margin-right: 8px;
  margin-bottom: 4px;
}

/* -------------------------------------
       page
-----------------------------------------*/
/* -------------------------------------
        mv
-----------------------------------------*/
.mv {
  position: relative;
  background-color: #FFF9E3;
  margin-top: 114px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 70px;
  }
}

.mv__inner {
  position: relative;
  max-width: 1440px;
  background: url(/assets/img/top/mv.png) no-repeat 50% 0;
  background-size: cover;
  height: 70vw;
  max-height: 957px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .mv__inner {
    height: 190vw;
    max-height: 782px;
    background: url(/assets/img/top/mv-sp.png) no-repeat 50% 35%;
    background-size: 80%;
  }
}

@media screen and (max-width: 500px) {
  .mv__inner {
    background-position: 50% 50%;
    background-size: contain;
  }
}

.mv__catch {
  position: absolute;
  top: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  font-size: 2.4rem;
}

@media screen and (max-width: 1400px) {
  .mv__catch {
    width: 38vw;
  }
}

@media screen and (max-width: 767px) {
  .mv__catch {
    top: 3%;
    max-width: 320px;
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
  .mv__catch {
    top: 4%;
  }
}

/* -------------------------------------
        tioop-link
-----------------------------------------*/
.top-link {
  position: relative;
  bottom: 195px;
  width: 100%;
  z-index: 100;
  margin-bottom: -195px;
}

@media screen and (max-width: 1400px) {
  .top-link {
    bottom: 14vw;
    margin-bottom: -14vw;
  }
}

@media screen and (max-width: 1200px) {
  .top-link {
    width: 90%;
    margin: 0 auto -14vw;
  }
}

@media screen and (max-width: 767px) {
  .top-link {
    width: 100%;
    bottom: 130px;
    margin-bottom: -130px;
  }
}

@media screen and (max-width: 500px) {
  .top-link {
    bottom: 32vw;
    margin-bottom: -32vw;
  }
}

.top-link__link {
  display: block;
  position: relative;
  background-color: #FAC8CF;
  border-radius: 14px;
  border: 5px solid #FAC8CF;
}

.top-link__link::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6%;
  content: '';
  display: inline-block;
  width: 23px;
  height: 39px;
  background-image: url(/assets/img/common/icon_right01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media screen and (max-width: 1200px) {
  .top-link__link::after {
    right: 4%;
  }
}

@media screen and (max-width: 767px) {
  .top-link__link::after {
    right: 5%;
    width: 20px;
    height: 32px;
  }
}

@media screen and (max-width: 340px) {
  .top-link__link::after {
    right: 2%;
  }
}

.top-link__link:hover.top-link__link::after, .top-link__link:focus.top-link__link::after {
  -webkit-transform: translate(10px, -50%);
          transform: translate(10px, -50%);
}

.top-link__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 10px;
  border: 5px solid transparent;
  padding: 22px 30px 22px 47px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.top-link__content:hover, .top-link__content:focus {
  border: 5px solid #FAC8CF;
}

@media screen and (max-width: 1200px) {
  .top-link__content {
    padding: 22px 10px;
  }
}

@media screen and (max-width: 1000px) {
  .top-link__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 22px 10px 30px;
  }
}

.top-link__img {
  width: 35%;
  max-width: 300px;
  margin-right: 14px;
}

@media screen and (max-width: 1200px) {
  .top-link__img {
    margin-right: 0;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .top-link__img {
    width: 46.75%;
  }
}

@media screen and (max-width: 1000px) {
  .top-link__text-area {
    text-align: center;
  }
}

.top-link__main-text {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 12px;
}

@media screen and (max-width: 1200px) {
  .top-link__main-text {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .top-link__main-text {
    font-size: 2rem;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 340px) {
  .top-link__main-text {
    font-size: 1.8rem;
  }
}

.top-link__sub-text {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .top-link__sub-text {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}

.top-link__label {
  background-color: #F8A8B3;
  border-radius: 24px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 14px 32px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .top-link__label {
    border-radius: 21px;
    font-size: 1.6rem;
    padding: 10px 23px;
  }
}

@media screen and (max-width: 340px) {
  .top-link__label {
    font-size: 1.4rem;
  }
}

/* -------------------------------------
        check
-----------------------------------------*/
.check {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .check {
    padding: 65px 0;
  }
}

.check__title {
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .check__title {
    margin-bottom: 20px;
  }
}

.check__title::after {
  content: '';
  display: inline-block;
  width: 57px;
  height: 10px;
  background-image: url(/assets/img/common/icon_dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .check__title::after {
    width: 44px;
    height: 7px;
    margin-top: 19px;
  }
}

.check__title-small {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .check__title-small {
    font-size: 1.6rem;
  }
}

.check__title-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.4rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .check__title-main {
    font-size: 2.2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.check__title-main::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 40px;
  background-image: url(/assets/img/common/icon01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
}

@media screen and (max-width: 767px) {
  .check__title-main::before {
    width: 22px;
    height: 26px;
    margin-right: 3px;
  }
}

.check__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .check__btn-area {
    display: block;
  }
}

.check__btn {
  width: calc(50% - 20px);
}

@media screen and (max-width: 1200px) {
  .check__btn {
    width: 100%;
    max-width: 518px;
    margin: 0 auto;
  }
  .check__btn:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* -------------------------------------
        about
-----------------------------------------*/
.about__inner {
  max-width: 940px;
}

.about__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .about__title {
    margin-bottom: 36px;
  }
}

.about__text-area {
  margin-bottom: 34px;
}

/* -------------------------------------
        about01
-----------------------------------------*/
.about01 {
  padding: 64px 0 60px;
}

@media screen and (max-width: 767px) {
  .about01 {
    padding: 54px 0 44px;
  }
}

.about01__item:not(:last-child) {
  margin-bottom: 34px;
}

/* -------------------------------------
        about02
-----------------------------------------*/
.about02 {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .about02 {
    padding: 50px 0 40px;
  }
}

.about02__text-area {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .about02__text-area {
    margin-bottom: 50px;
  }
}

/* -------------------------------------
        about03
-----------------------------------------*/
.about03 {
  padding: 62px 0 100px;
}

@media screen and (max-width: 767px) {
  .about03 {
    padding: 50px 0 70px;
  }
}

.about03__title {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .about03__title {
    margin-bottom: 40px;
  }
}

.about03__text-area {
  margin-bottom: 42px;
}

.about03__content:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .about03__content:not(:last-child) {
    margin-bottom: 50px;
  }
}

.about-items__text-area {
  margin-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .about-items__text-area {
    margin-bottom: 40px;
  }
}

.about-items__text {
  margin-bottom: 26px;
}

.about-items__list {
  margin-bottom: 26px;
}

/* -------------------------------------
        about01-item
-----------------------------------------*/
.about01-item {
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  .about01-item {
    padding: 18px 20px 20px;
  }
}

.about01-item__title {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .about01-item__title {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
  }
}

.about01-item__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 704px;
  margin: 0 auto 30px;
}

.about01-item__content {
  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;
  width: calc(50% - 20px);
}

.about01-item__content-title {
  width: 100%;
  background-color: #FABBC4;
  border-radius: 10px 10px 0 0;
  color: #FFF;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px 10px;
}

.about01-item__content-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #FFF;
  text-align: center;
  padding: 25px 10px;
  min-height: 0%;
}

.about01-item__img {
  min-height: 0%;
  max-width: 704px;
  margin: 0 auto;
}

/* -------------------------------------
   about02-item01
-----------------------------------------*/
.about02-item01 {
  padding: 54px 20px 70px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .about02-item01 {
    padding: 20px 32px;
    margin-bottom: 52px;
  }
}

.about02-item01__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .about02-item01__title {
    margin-bottom: 16px;
  }
}

.about02-item01__img {
  max-width: 654px;
  min-height: 0%;
}

/* -------------------------------------
        about02-item02
-----------------------------------------*/
.about02-item02 {
  padding: 43px 20px 55px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .about02-item02 {
    padding: 20px 22px;
  }
}

.about02-item02__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .about02-item02__title {
    margin-bottom: 16px;
  }
}

.about02-item02__img {
  max-width: 654px;
}

/* -------------------------------------
        about03-item
-----------------------------------------*/
.about03-item {
  padding: 60px 20px 40px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .about03-item {
    padding: 30px 20px 24px;
    margin-bottom: 56px;
  }
}

@media screen and (max-width: 420px) {
  .about03-item {
    padding: 30px 15px 24px;
  }
}

@media screen and (max-width: 340px) {
  .about03-item {
    padding: 30px 5px 24px;
  }
}

.about03-item__title {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .about03-item__title {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
}

.about03-item__lead {
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

@media screen and (max-width: 767px) {
  .about03-item__lead {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .about03-item__lead {
    margin-bottom: 14px;
  }
}

.about03-item__catch-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .about03-item__catch-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
}

.about03-item__catch {
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  padding: 10px 15px;
}

@media screen and (max-width: 767px) {
  .about03-item__catch {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 4px 12px;
  }
}

@media screen and (max-width: 420px) {
  .about03-item__catch {
    padding: 4px 7px;
  }
}

@media screen and (max-width: 340px) {
  .about03-item__catch {
    font-size: 1rem;
    letter-spacing: 0;
    padding: 4px 3px;
  }
}

.about03-item__catch--01 {
  background-color: #FABBC4;
}

.about03-item__catch--02 {
  background-color: #8ED4D8;
}

.about03-item__catch-iocn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 11px;
}

@media screen and (max-width: 767px) {
  .about03-item__catch-iocn {
    padding: 0 7px;
  }
}

@media screen and (max-width: 420px) {
  .about03-item__catch-iocn {
    padding: 0 5px;
  }
}

@media screen and (max-width: 767px) {
  .about03-item__catch-iocn img {
    max-width: 10px;
  }
}

.about03-item__img {
  min-height: 0%;
  max-width: 704px;
  margin: 0 auto;
}

.about03-content__title {
  margin-bottom: 30px;
}

.about03-content__text-area {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .about03-content__text-area {
    margin-bottom: 30px;
  }
}

.about03-content__btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .about03-content__btn {
    max-width: none;
  }
}

.about03-content__list {
  background-color: #FFF9E3;
  padding: 40px 53px;
  max-width: 704px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .about03-content__list {
    padding: 20px;
    margin: 0 20px 36px;
  }
}

.about03-content__item:not(:last-child) {
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .about03-content__item:not(:last-child) {
    margin-bottom: 14px;
  }
}

.about03-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about03-content-item::before {
  content: "";
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #77CCD1;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .about03-content-item::before {
    width: 12px;
    height: 12px;
    margin-top: 2px;
    margin-right: 6px;
  }
}

.about03-content-item__main-text {
  display: block;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .about03-content-item__main-text {
    font-size: 1.4rem;
    margin-bottom: -4px;
  }
}

.about03-content-item__main-text::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 9px;
  background-image: url(../img/common/icon02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
  margin-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .about03-content-item__main-text::after {
    margin-left: 8px;
  }
}

.about03-content-item__main-text:hover, .about03-content-item__main-text:focus {
  opacity: 0.7;
}

.about03-content-item__sub-text {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .about03-content-item__sub-text {
    font-size: 1.1rem;
  }
}

/* -------------------------------------
        notice
-----------------------------------------*/
.notice__inner {
  max-width: 940px;
}

.notice__text-area {
  margin-bottom: 36px;
}

.notice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -32px;
}

@media screen and (max-width: 767px) {
  .notice__items {
    display: block;
    margin-bottom: -28px;
  }
}

.notice__item {
  width: calc(50% - 20px);
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .notice__item {
    width: 100%;
    margin-bottom: 28px;
  }
}

.notice__list {
  margin-bottom: 30px;
}

.notice-intro {
  padding: 64px 0 30px;
}

@media screen and (max-width: 767px) {
  .notice-intro {
    padding: 54px 0 44px;
  }
}

.notice-intro__inner {
  max-width: 940px;
}

/* -------------------------------------
        notice01
-----------------------------------------*/
.notice01 {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .notice01 {
    padding: 50px 0 25px;
  }
}

.notice01__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .notice01__title {
    margin-bottom: 40px;
  }
}

.notice01__text {
  margin-bottom: 28px;
}

.notice01__text-area {
  margin-bottom: 30px;
}

/* -------------------------------------
        notice02
-----------------------------------------*/
.notice02 {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .notice02 {
    padding: 25px 0;
  }
}

.notice02__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .notice02__title {
    margin-bottom: 34px;
  }
}

.notice02__title span {
  display: inline-block;
  font-size: 1.6rem;
  -webkit-transform: translate(-8px, -8px);
          transform: translate(-8px, -8px);
}

@media screen and (max-width: 767px) {
  .notice02__title span {
    font-size: 1.8rem;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.notice02__text {
  margin-bottom: 28px;
}

.notice02__item:not(:last-child) {
  margin-bottom: 30px;
}

.notice02__note {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .notice02__note {
    font-size: 1.1rem;
  }
}

/* -------------------------------------
        notice03
-----------------------------------------*/
.notice03 {
  padding: 30px 0 100px;
}

@media screen and (max-width: 767px) {
  .notice03 {
    padding: 25px 0 80px;
  }
}

.notice03__title {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .notice03__title {
    margin-bottom: 34px;
  }
}

.notice03__text-area {
  margin-bottom: 72px;
}

.notice03__content:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .notice03__content:not(:last-child) {
    margin-bottom: 76px;
  }
}

.notice03__item {
  max-width: 890px;
  margin: 0 auto 36px;
}

/* -------------------------------------
        notice03-content
-----------------------------------------*/
.notice03-content__title {
  position: relative;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 88px;
}

@media screen and (max-width: 767px) {
  .notice03-content__title {
    font-size: 1.8rem;
    margin-bottom: 64px;
  }
}

.notice03-content__title::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -60px;
  display: inline-block;
  content: "";
  width: 1px;
  height: 35px;
  background-color: #707070;
}

@media screen and (max-width: 767px) {
  .notice03-content__title::after {
    height: 24px;
    bottom: -42px;
  }
}

.notice03-content__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .notice03-content__btn {
    max-width: 380px;
    margin: 0 auto 70px;
  }
}

@media screen and (max-width: 767px) {
  .notice03-item02 {
    padding: 18px 15px 20px 15px;
  }
}

/* -------------------------------------
        notice03-item
-----------------------------------------*/
.notice03-item__title {
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.notice03-item__text {
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .notice03-item__text {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}

.notice03-item__img {
  max-width: 590px;
  width: 100%;
  min-height: 0%;
}

.notice03-item__img--s {
  max-width: 552px;
}

@media screen and (max-width: 767px) {
  .notice03-item__img--s {
    width: 84%;
  }
}

.notice03-item01 {
  padding: 50px 20px;
}

@media screen and (max-width: 767px) {
  .notice03-item01 {
    padding: 18px 26px 20px;
  }
}

.notice03-item02 {
  padding: 46px 20px;
}

@media screen and (max-width: 767px) {
  .notice03-item02 {
    padding: 18px 15px 20px;
    margin-bottom: 28px;
  }
}

/* -------------------------------------
        notice03-table
-----------------------------------------*/
.notice03-table {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .notice03-table {
    max-width: 750px;
    margin: 0 auto;
  }
}

.notice03-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DDD;
  padding: 20px 0;
}

@media screen and (max-width: 1000px) {
  .notice03-table__row {
    display: block;
    padding: 16px 0 20px;
  }
}

.notice03-table__row:first-child {
  padding: 0 0 2px 0;
}

.notice03-table__head {
  font-weight: 400;
  text-align: left;
  width: 36.8%;
  letter-spacing: 0.05em;
  padding: 0 10px;
}

@media screen and (max-width: 1000px) {
  .notice03-table__head {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 6px;
  }
}

.notice03-table__head--first {
  font-size: 2.2rem;
}

@media screen and (max-width: 1000px) {
  .notice03-table__head--first {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .notice03-table__head--first {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}

.notice03-table__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .notice03-table__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 1000px) {
  .notice03-table__sub-item {
    display: none !important;
  }
}

.notice03-table__item {
  width: 340px;
  min-width: 310px;
  font-weight: 400;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .notice03-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 2px);
    min-width: auto;
    padding: 0;
  }
}

/* -------------------------------------
        spread
-----------------------------------------*/
.spread {
  padding: 66px 0 100px;
}

@media screen and (max-width: 767px) {
  .spread {
    padding: 54px 0 80px;
  }
}

.spread__inner {
  max-width: 940px;
}

.spread__title {
  margin-bottom: 36px;
}

.spread__text-area {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .spread__text-area {
    margin-bottom: 40px;
  }
}

.spread__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .spread__items {
    display: block;
  }
}

.spread__item {
  width: calc(50% - 20px);
}

@media screen and (max-width: 767px) {
  .spread__item {
    width: 100%;
  }
  .spread__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* -------------------------------------
        spread-item
-----------------------------------------*/
.spread-item {
  background-color: #F8F8F7;
  border: 1px solid #E9E9DC;
  padding: 40px 52px 60px;
}

@media screen and (max-width: 767px) {
  .spread-item {
    padding: 20px 24px 32px;
  }
}

.spread-item__title {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.spread-item__img {
  margin-bottom: 20px;
}

.spread-item__btn {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
/*2022/10/15*/
.copyright{
  color:#fff;
  text-align:center;
  font-size:11px;
  margin-top:15px;

}
