@charset "UTF-8";
/*
 * Config
 */
/*
 * Color
 */
/*
 * Media Break
 */
/*
 * Fonts
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: "DIN";
  src: url(../fonts/DIN2014-Bold.woff);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN2014-Bold.eot");
  src: url("../fonts/DIN2014-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/DIN2014-Bold.woff") format("woff"), url("../fonts/DIN2014-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Black.woff2") format("woff2"), url("../font/AvenirLTStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 8px;
    font-size: 0.685vw;
  }
}
@media screen and (min-width: 1366px) {
  html {
    font-size: 0.685vw;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 10px;
  }
}
/*
 * BEM関連
 */
/*
 * clearfix
 */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul li, ol li {
  list-style: none;
}

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

.pc {
  display: none !important;
}
@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
}

.pc-in {
  display: none !important;
}
@media (min-width: 769px) {
  .pc-in {
    display: inline-block !important;
  }
}

.ipad {
  display: none !important;
}
@media (min-width: 561px) {
  .ipad {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media (min-width: 561px) {
  .sp {
    display: none !important;
  }
}

.is-flex {
  display: flex !important;
}

.is-flex-pc {
  display: block;
}
@media (min-width: 769px) {
  .is-flex-pc {
    display: flex !important;
  }
}

.is-flex-ipad {
  display: block;
}
@media (min-width: 561px) {
  .is-flex-ipad {
    display: flex !important;
  }
}

.is-flex-wrap {
  flex-wrap: wrap;
}

.is-flex-column {
  flex-direction: column;
}

.is-flex-row {
  flex-direction: row;
}

.is-row-reverse {
  flex-direction: row-reverse;
}

.is-column-reverse {
  flex-direction: column-reverse;
}

.is-justify-between {
  justify-content: space-between;
}

.is-justify-evenly {
  justify-content: space-around;
  /*for moz & chrome*/
  -webkit-justify-content: space-evenly !important;
}

.is-justify-center {
  justify-content: center;
}

.is-justify-end {
  justify-content: flex-end;
}

.is-align-start {
  align-items: flex-start;
}

.is-align-center {
  align-items: center;
}

.is-align-end {
  align-items: flex-end;
}

.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}

.is-fixed {
  position: fixed;
}

.is-relative {
  position: relative;
}

.is-absolute {
  position: absolute;
}

.z-front {
  z-index: 100;
}

.z-normal {
  z-index: 0;
}

.z-back {
  z-index: -1;
}

.is-inline-block {
  display: inline-block;
}

.is-inline-flex {
  display: inline-flex;
}

.t-light {
  font-weight: 200;
}
.t-regular {
  font-weight: 400;
}
.t-med {
  font-weight: 500;
}
.t-bold {
  font-weight: 700;
}
.t-bolder {
  font-weight: 900;
}
.t-right {
  text-align: right;
}
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-underline {
  text-decoration: underline;
}
.t-italic {
  font-style: italic;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #000;
}

.c-main {
  color: #1f1f1f;
}

.is-margin_auto {
  margin: auto !important;
}
.is-margin_rlauto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.is-margin_rl0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.is-margin_r0 {
  margin-right: 0 !important;
}
.is-margin_l0 {
  margin-left: 0 !important;
}
.is-margin_t0 {
  margin-top: 0 !important;
}
.is-margin_b0 {
  margin-bottom: 0 !important;
}
@media (min-width: 561px) {
  .is-margin_rlauto_pc {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .is-margin_rl0_pc {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 560px) {
  .is-margin_rlauto_sp {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .is-margin_rl0_sp {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

@media (min-width: 561px) {
  .is-margin_t5_pc {
    margin-top: 5px !important;
  }
  .is-margin_r5_pc {
    margin-right: 5px !important;
  }
  .is-margin_b5_pc {
    margin-bottom: 5px !important;
  }
  .is-margin_l5_pc {
    margin-left: 5px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t5_sp {
    margin-top: 5px !important;
  }
  .is-margin_r5_sp {
    margin-right: 5px !important;
  }
  .is-margin_b5_sp {
    margin-bottom: 5px !important;
  }
  .is-margin_l5_sp {
    margin-left: 5px !important;
  }
}
.is-margin_t5 {
  margin-top: 5px !important;
}

.is-margin_r5 {
  margin-right: 5px !important;
}

.is-margin_b5 {
  margin-bottom: 5px !important;
}

.is-margin_l5 {
  margin-left: 5px !important;
}

@media (min-width: 561px) {
  .is-margin_t10_pc {
    margin-top: 10px !important;
  }
  .is-margin_r10_pc {
    margin-right: 10px !important;
  }
  .is-margin_b10_pc {
    margin-bottom: 10px !important;
  }
  .is-margin_l10_pc {
    margin-left: 10px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t10_sp {
    margin-top: 10px !important;
  }
  .is-margin_r10_sp {
    margin-right: 10px !important;
  }
  .is-margin_b10_sp {
    margin-bottom: 10px !important;
  }
  .is-margin_l10_sp {
    margin-left: 10px !important;
  }
}
.is-margin_t10 {
  margin-top: 10px !important;
}

.is-margin_r10 {
  margin-right: 10px !important;
}

.is-margin_b10 {
  margin-bottom: 10px !important;
}

.is-margin_l10 {
  margin-left: 10px !important;
}

@media (min-width: 561px) {
  .is-margin_t15_pc {
    margin-top: 15px !important;
  }
  .is-margin_r15_pc {
    margin-right: 15px !important;
  }
  .is-margin_b15_pc {
    margin-bottom: 15px !important;
  }
  .is-margin_l15_pc {
    margin-left: 15px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t15_sp {
    margin-top: 15px !important;
  }
  .is-margin_r15_sp {
    margin-right: 15px !important;
  }
  .is-margin_b15_sp {
    margin-bottom: 15px !important;
  }
  .is-margin_l15_sp {
    margin-left: 15px !important;
  }
}
.is-margin_t15 {
  margin-top: 15px !important;
}

.is-margin_r15 {
  margin-right: 15px !important;
}

.is-margin_b15 {
  margin-bottom: 15px !important;
}

.is-margin_l15 {
  margin-left: 15px !important;
}

@media (min-width: 561px) {
  .is-margin_t20_pc {
    margin-top: 20px !important;
  }
  .is-margin_r20_pc {
    margin-right: 20px !important;
  }
  .is-margin_b20_pc {
    margin-bottom: 20px !important;
  }
  .is-margin_l20_pc {
    margin-left: 20px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t20_sp {
    margin-top: 20px !important;
  }
  .is-margin_r20_sp {
    margin-right: 20px !important;
  }
  .is-margin_b20_sp {
    margin-bottom: 20px !important;
  }
  .is-margin_l20_sp {
    margin-left: 20px !important;
  }
}
.is-margin_t20 {
  margin-top: 20px !important;
}

.is-margin_r20 {
  margin-right: 20px !important;
}

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

.is-margin_l20 {
  margin-left: 20px !important;
}

@media (min-width: 561px) {
  .is-margin_t25_pc {
    margin-top: 25px !important;
  }
  .is-margin_r25_pc {
    margin-right: 25px !important;
  }
  .is-margin_b25_pc {
    margin-bottom: 25px !important;
  }
  .is-margin_l25_pc {
    margin-left: 25px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t25_sp {
    margin-top: 25px !important;
  }
  .is-margin_r25_sp {
    margin-right: 25px !important;
  }
  .is-margin_b25_sp {
    margin-bottom: 25px !important;
  }
  .is-margin_l25_sp {
    margin-left: 25px !important;
  }
}
.is-margin_t25 {
  margin-top: 25px !important;
}

.is-margin_r25 {
  margin-right: 25px !important;
}

.is-margin_b25 {
  margin-bottom: 25px !important;
}

.is-margin_l25 {
  margin-left: 25px !important;
}

@media (min-width: 561px) {
  .is-margin_t30_pc {
    margin-top: 30px !important;
  }
  .is-margin_r30_pc {
    margin-right: 30px !important;
  }
  .is-margin_b30_pc {
    margin-bottom: 30px !important;
  }
  .is-margin_l30_pc {
    margin-left: 30px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t30_sp {
    margin-top: 30px !important;
  }
  .is-margin_r30_sp {
    margin-right: 30px !important;
  }
  .is-margin_b30_sp {
    margin-bottom: 30px !important;
  }
  .is-margin_l30_sp {
    margin-left: 30px !important;
  }
}
.is-margin_t30 {
  margin-top: 30px !important;
}

.is-margin_r30 {
  margin-right: 30px !important;
}

.is-margin_b30 {
  margin-bottom: 30px !important;
}

.is-margin_l30 {
  margin-left: 30px !important;
}

@media (min-width: 561px) {
  .is-margin_t35_pc {
    margin-top: 35px !important;
  }
  .is-margin_r35_pc {
    margin-right: 35px !important;
  }
  .is-margin_b35_pc {
    margin-bottom: 35px !important;
  }
  .is-margin_l35_pc {
    margin-left: 35px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t35_sp {
    margin-top: 35px !important;
  }
  .is-margin_r35_sp {
    margin-right: 35px !important;
  }
  .is-margin_b35_sp {
    margin-bottom: 35px !important;
  }
  .is-margin_l35_sp {
    margin-left: 35px !important;
  }
}
.is-margin_t35 {
  margin-top: 35px !important;
}

.is-margin_r35 {
  margin-right: 35px !important;
}

.is-margin_b35 {
  margin-bottom: 35px !important;
}

.is-margin_l35 {
  margin-left: 35px !important;
}

@media (min-width: 561px) {
  .is-margin_t40_pc {
    margin-top: 40px !important;
  }
  .is-margin_r40_pc {
    margin-right: 40px !important;
  }
  .is-margin_b40_pc {
    margin-bottom: 40px !important;
  }
  .is-margin_l40_pc {
    margin-left: 40px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t40_sp {
    margin-top: 40px !important;
  }
  .is-margin_r40_sp {
    margin-right: 40px !important;
  }
  .is-margin_b40_sp {
    margin-bottom: 40px !important;
  }
  .is-margin_l40_sp {
    margin-left: 40px !important;
  }
}
.is-margin_t40 {
  margin-top: 40px !important;
}

.is-margin_r40 {
  margin-right: 40px !important;
}

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

.is-margin_l40 {
  margin-left: 40px !important;
}

@media (min-width: 561px) {
  .is-margin_t45_pc {
    margin-top: 45px !important;
  }
  .is-margin_r45_pc {
    margin-right: 45px !important;
  }
  .is-margin_b45_pc {
    margin-bottom: 45px !important;
  }
  .is-margin_l45_pc {
    margin-left: 45px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t45_sp {
    margin-top: 45px !important;
  }
  .is-margin_r45_sp {
    margin-right: 45px !important;
  }
  .is-margin_b45_sp {
    margin-bottom: 45px !important;
  }
  .is-margin_l45_sp {
    margin-left: 45px !important;
  }
}
.is-margin_t45 {
  margin-top: 45px !important;
}

.is-margin_r45 {
  margin-right: 45px !important;
}

.is-margin_b45 {
  margin-bottom: 45px !important;
}

.is-margin_l45 {
  margin-left: 45px !important;
}

@media (min-width: 561px) {
  .is-margin_t50_pc {
    margin-top: 50px !important;
  }
  .is-margin_r50_pc {
    margin-right: 50px !important;
  }
  .is-margin_b50_pc {
    margin-bottom: 50px !important;
  }
  .is-margin_l50_pc {
    margin-left: 50px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t50_sp {
    margin-top: 50px !important;
  }
  .is-margin_r50_sp {
    margin-right: 50px !important;
  }
  .is-margin_b50_sp {
    margin-bottom: 50px !important;
  }
  .is-margin_l50_sp {
    margin-left: 50px !important;
  }
}
.is-margin_t50 {
  margin-top: 50px !important;
}

.is-margin_r50 {
  margin-right: 50px !important;
}

.is-margin_b50 {
  margin-bottom: 50px !important;
}

.is-margin_l50 {
  margin-left: 50px !important;
}

@media (min-width: 561px) {
  .is-margin_t55_pc {
    margin-top: 55px !important;
  }
  .is-margin_r55_pc {
    margin-right: 55px !important;
  }
  .is-margin_b55_pc {
    margin-bottom: 55px !important;
  }
  .is-margin_l55_pc {
    margin-left: 55px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t55_sp {
    margin-top: 55px !important;
  }
  .is-margin_r55_sp {
    margin-right: 55px !important;
  }
  .is-margin_b55_sp {
    margin-bottom: 55px !important;
  }
  .is-margin_l55_sp {
    margin-left: 55px !important;
  }
}
.is-margin_t55 {
  margin-top: 55px !important;
}

.is-margin_r55 {
  margin-right: 55px !important;
}

.is-margin_b55 {
  margin-bottom: 55px !important;
}

.is-margin_l55 {
  margin-left: 55px !important;
}

@media (min-width: 561px) {
  .is-margin_t60_pc {
    margin-top: 60px !important;
  }
  .is-margin_r60_pc {
    margin-right: 60px !important;
  }
  .is-margin_b60_pc {
    margin-bottom: 60px !important;
  }
  .is-margin_l60_pc {
    margin-left: 60px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t60_sp {
    margin-top: 60px !important;
  }
  .is-margin_r60_sp {
    margin-right: 60px !important;
  }
  .is-margin_b60_sp {
    margin-bottom: 60px !important;
  }
  .is-margin_l60_sp {
    margin-left: 60px !important;
  }
}
.is-margin_t60 {
  margin-top: 60px !important;
}

.is-margin_r60 {
  margin-right: 60px !important;
}

.is-margin_b60 {
  margin-bottom: 60px !important;
}

.is-margin_l60 {
  margin-left: 60px !important;
}

@media (min-width: 561px) {
  .is-margin_t65_pc {
    margin-top: 65px !important;
  }
  .is-margin_r65_pc {
    margin-right: 65px !important;
  }
  .is-margin_b65_pc {
    margin-bottom: 65px !important;
  }
  .is-margin_l65_pc {
    margin-left: 65px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t65_sp {
    margin-top: 65px !important;
  }
  .is-margin_r65_sp {
    margin-right: 65px !important;
  }
  .is-margin_b65_sp {
    margin-bottom: 65px !important;
  }
  .is-margin_l65_sp {
    margin-left: 65px !important;
  }
}
.is-margin_t65 {
  margin-top: 65px !important;
}

.is-margin_r65 {
  margin-right: 65px !important;
}

.is-margin_b65 {
  margin-bottom: 65px !important;
}

.is-margin_l65 {
  margin-left: 65px !important;
}

@media (min-width: 561px) {
  .is-margin_t70_pc {
    margin-top: 70px !important;
  }
  .is-margin_r70_pc {
    margin-right: 70px !important;
  }
  .is-margin_b70_pc {
    margin-bottom: 70px !important;
  }
  .is-margin_l70_pc {
    margin-left: 70px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t70_sp {
    margin-top: 70px !important;
  }
  .is-margin_r70_sp {
    margin-right: 70px !important;
  }
  .is-margin_b70_sp {
    margin-bottom: 70px !important;
  }
  .is-margin_l70_sp {
    margin-left: 70px !important;
  }
}
.is-margin_t70 {
  margin-top: 70px !important;
}

.is-margin_r70 {
  margin-right: 70px !important;
}

.is-margin_b70 {
  margin-bottom: 70px !important;
}

.is-margin_l70 {
  margin-left: 70px !important;
}

@media (min-width: 561px) {
  .is-margin_t75_pc {
    margin-top: 75px !important;
  }
  .is-margin_r75_pc {
    margin-right: 75px !important;
  }
  .is-margin_b75_pc {
    margin-bottom: 75px !important;
  }
  .is-margin_l75_pc {
    margin-left: 75px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t75_sp {
    margin-top: 75px !important;
  }
  .is-margin_r75_sp {
    margin-right: 75px !important;
  }
  .is-margin_b75_sp {
    margin-bottom: 75px !important;
  }
  .is-margin_l75_sp {
    margin-left: 75px !important;
  }
}
.is-margin_t75 {
  margin-top: 75px !important;
}

.is-margin_r75 {
  margin-right: 75px !important;
}

.is-margin_b75 {
  margin-bottom: 75px !important;
}

.is-margin_l75 {
  margin-left: 75px !important;
}

@media (min-width: 561px) {
  .is-margin_t80_pc {
    margin-top: 80px !important;
  }
  .is-margin_r80_pc {
    margin-right: 80px !important;
  }
  .is-margin_b80_pc {
    margin-bottom: 80px !important;
  }
  .is-margin_l80_pc {
    margin-left: 80px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t80_sp {
    margin-top: 80px !important;
  }
  .is-margin_r80_sp {
    margin-right: 80px !important;
  }
  .is-margin_b80_sp {
    margin-bottom: 80px !important;
  }
  .is-margin_l80_sp {
    margin-left: 80px !important;
  }
}
.is-margin_t80 {
  margin-top: 80px !important;
}

.is-margin_r80 {
  margin-right: 80px !important;
}

.is-margin_b80 {
  margin-bottom: 80px !important;
}

.is-margin_l80 {
  margin-left: 80px !important;
}

@media (min-width: 561px) {
  .is-margin_t85_pc {
    margin-top: 85px !important;
  }
  .is-margin_r85_pc {
    margin-right: 85px !important;
  }
  .is-margin_b85_pc {
    margin-bottom: 85px !important;
  }
  .is-margin_l85_pc {
    margin-left: 85px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t85_sp {
    margin-top: 85px !important;
  }
  .is-margin_r85_sp {
    margin-right: 85px !important;
  }
  .is-margin_b85_sp {
    margin-bottom: 85px !important;
  }
  .is-margin_l85_sp {
    margin-left: 85px !important;
  }
}
.is-margin_t85 {
  margin-top: 85px !important;
}

.is-margin_r85 {
  margin-right: 85px !important;
}

.is-margin_b85 {
  margin-bottom: 85px !important;
}

.is-margin_l85 {
  margin-left: 85px !important;
}

@media (min-width: 561px) {
  .is-margin_t90_pc {
    margin-top: 90px !important;
  }
  .is-margin_r90_pc {
    margin-right: 90px !important;
  }
  .is-margin_b90_pc {
    margin-bottom: 90px !important;
  }
  .is-margin_l90_pc {
    margin-left: 90px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t90_sp {
    margin-top: 90px !important;
  }
  .is-margin_r90_sp {
    margin-right: 90px !important;
  }
  .is-margin_b90_sp {
    margin-bottom: 90px !important;
  }
  .is-margin_l90_sp {
    margin-left: 90px !important;
  }
}
.is-margin_t90 {
  margin-top: 90px !important;
}

.is-margin_r90 {
  margin-right: 90px !important;
}

.is-margin_b90 {
  margin-bottom: 90px !important;
}

.is-margin_l90 {
  margin-left: 90px !important;
}

@media (min-width: 561px) {
  .is-margin_t95_pc {
    margin-top: 95px !important;
  }
  .is-margin_r95_pc {
    margin-right: 95px !important;
  }
  .is-margin_b95_pc {
    margin-bottom: 95px !important;
  }
  .is-margin_l95_pc {
    margin-left: 95px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t95_sp {
    margin-top: 95px !important;
  }
  .is-margin_r95_sp {
    margin-right: 95px !important;
  }
  .is-margin_b95_sp {
    margin-bottom: 95px !important;
  }
  .is-margin_l95_sp {
    margin-left: 95px !important;
  }
}
.is-margin_t95 {
  margin-top: 95px !important;
}

.is-margin_r95 {
  margin-right: 95px !important;
}

.is-margin_b95 {
  margin-bottom: 95px !important;
}

.is-margin_l95 {
  margin-left: 95px !important;
}

@media (min-width: 561px) {
  .is-margin_t100_pc {
    margin-top: 100px !important;
  }
  .is-margin_r100_pc {
    margin-right: 100px !important;
  }
  .is-margin_b100_pc {
    margin-bottom: 100px !important;
  }
  .is-margin_l100_pc {
    margin-left: 100px !important;
  }
}
@media (max-width: 560px) {
  .is-margin_t100_sp {
    margin-top: 100px !important;
  }
  .is-margin_r100_sp {
    margin-right: 100px !important;
  }
  .is-margin_b100_sp {
    margin-bottom: 100px !important;
  }
  .is-margin_l100_sp {
    margin-left: 100px !important;
  }
}
.is-margin_t100 {
  margin-top: 100px !important;
}

.is-margin_r100 {
  margin-right: 100px !important;
}

.is-margin_b100 {
  margin-bottom: 100px !important;
}

.is-margin_l100 {
  margin-left: 100px !important;
}

.is-padding_r0 {
  padding-right: 0 !important;
}
.is-padding_l0 {
  padding-left: 0 !important;
}
.is-padding_t0 {
  padding-top: 0 !important;
}
.is-padding_b0 {
  padding-bottom: 0 !important;
}

@media (min-width: 561px) {
  .is-padding_t5_pc {
    padding-top: 5px !important;
  }
  .is-padding_r5_pc {
    padding-right: 5px !important;
  }
  .is-padding_b5_pc {
    padding-bottom: 5px !important;
  }
  .is-padding_l5_pc {
    padding-left: 5px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t5_sp {
    padding-top: 5px !important;
  }
  .is-padding_r5_sp {
    padding-right: 5px !important;
  }
  .is-padding_b5_sp {
    padding-bottom: 5px !important;
  }
  .is-padding_l5_sp {
    padding-left: 5px !important;
  }
}
.is-padding_t5 {
  padding-top: 5px !important;
}

.is-padding_r5 {
  padding-right: 5px !important;
}

.is-padding_b5 {
  padding-bottom: 5px !important;
}

.is-padding_l5 {
  padding-left: 5px !important;
}

@media (min-width: 561px) {
  .is-padding_t10_pc {
    padding-top: 10px !important;
  }
  .is-padding_r10_pc {
    padding-right: 10px !important;
  }
  .is-padding_b10_pc {
    padding-bottom: 10px !important;
  }
  .is-padding_l10_pc {
    padding-left: 10px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t10_sp {
    padding-top: 10px !important;
  }
  .is-padding_r10_sp {
    padding-right: 10px !important;
  }
  .is-padding_b10_sp {
    padding-bottom: 10px !important;
  }
  .is-padding_l10_sp {
    padding-left: 10px !important;
  }
}
.is-padding_t10 {
  padding-top: 10px !important;
}

.is-padding_r10 {
  padding-right: 10px !important;
}

.is-padding_b10 {
  padding-bottom: 10px !important;
}

.is-padding_l10 {
  padding-left: 10px !important;
}

@media (min-width: 561px) {
  .is-padding_t15_pc {
    padding-top: 15px !important;
  }
  .is-padding_r15_pc {
    padding-right: 15px !important;
  }
  .is-padding_b15_pc {
    padding-bottom: 15px !important;
  }
  .is-padding_l15_pc {
    padding-left: 15px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t15_sp {
    padding-top: 15px !important;
  }
  .is-padding_r15_sp {
    padding-right: 15px !important;
  }
  .is-padding_b15_sp {
    padding-bottom: 15px !important;
  }
  .is-padding_l15_sp {
    padding-left: 15px !important;
  }
}
.is-padding_t15 {
  padding-top: 15px !important;
}

.is-padding_r15 {
  padding-right: 15px !important;
}

.is-padding_b15 {
  padding-bottom: 15px !important;
}

.is-padding_l15 {
  padding-left: 15px !important;
}

@media (min-width: 561px) {
  .is-padding_t20_pc {
    padding-top: 20px !important;
  }
  .is-padding_r20_pc {
    padding-right: 20px !important;
  }
  .is-padding_b20_pc {
    padding-bottom: 20px !important;
  }
  .is-padding_l20_pc {
    padding-left: 20px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t20_sp {
    padding-top: 20px !important;
  }
  .is-padding_r20_sp {
    padding-right: 20px !important;
  }
  .is-padding_b20_sp {
    padding-bottom: 20px !important;
  }
  .is-padding_l20_sp {
    padding-left: 20px !important;
  }
}
.is-padding_t20 {
  padding-top: 20px !important;
}

.is-padding_r20 {
  padding-right: 20px !important;
}

.is-padding_b20 {
  padding-bottom: 20px !important;
}

.is-padding_l20 {
  padding-left: 20px !important;
}

@media (min-width: 561px) {
  .is-padding_t25_pc {
    padding-top: 25px !important;
  }
  .is-padding_r25_pc {
    padding-right: 25px !important;
  }
  .is-padding_b25_pc {
    padding-bottom: 25px !important;
  }
  .is-padding_l25_pc {
    padding-left: 25px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t25_sp {
    padding-top: 25px !important;
  }
  .is-padding_r25_sp {
    padding-right: 25px !important;
  }
  .is-padding_b25_sp {
    padding-bottom: 25px !important;
  }
  .is-padding_l25_sp {
    padding-left: 25px !important;
  }
}
.is-padding_t25 {
  padding-top: 25px !important;
}

.is-padding_r25 {
  padding-right: 25px !important;
}

.is-padding_b25 {
  padding-bottom: 25px !important;
}

.is-padding_l25 {
  padding-left: 25px !important;
}

@media (min-width: 561px) {
  .is-padding_t30_pc {
    padding-top: 30px !important;
  }
  .is-padding_r30_pc {
    padding-right: 30px !important;
  }
  .is-padding_b30_pc {
    padding-bottom: 30px !important;
  }
  .is-padding_l30_pc {
    padding-left: 30px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t30_sp {
    padding-top: 30px !important;
  }
  .is-padding_r30_sp {
    padding-right: 30px !important;
  }
  .is-padding_b30_sp {
    padding-bottom: 30px !important;
  }
  .is-padding_l30_sp {
    padding-left: 30px !important;
  }
}
.is-padding_t30 {
  padding-top: 30px !important;
}

.is-padding_r30 {
  padding-right: 30px !important;
}

.is-padding_b30 {
  padding-bottom: 30px !important;
}

.is-padding_l30 {
  padding-left: 30px !important;
}

@media (min-width: 561px) {
  .is-padding_t35_pc {
    padding-top: 35px !important;
  }
  .is-padding_r35_pc {
    padding-right: 35px !important;
  }
  .is-padding_b35_pc {
    padding-bottom: 35px !important;
  }
  .is-padding_l35_pc {
    padding-left: 35px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t35_sp {
    padding-top: 35px !important;
  }
  .is-padding_r35_sp {
    padding-right: 35px !important;
  }
  .is-padding_b35_sp {
    padding-bottom: 35px !important;
  }
  .is-padding_l35_sp {
    padding-left: 35px !important;
  }
}
.is-padding_t35 {
  padding-top: 35px !important;
}

.is-padding_r35 {
  padding-right: 35px !important;
}

.is-padding_b35 {
  padding-bottom: 35px !important;
}

.is-padding_l35 {
  padding-left: 35px !important;
}

@media (min-width: 561px) {
  .is-padding_t40_pc {
    padding-top: 40px !important;
  }
  .is-padding_r40_pc {
    padding-right: 40px !important;
  }
  .is-padding_b40_pc {
    padding-bottom: 40px !important;
  }
  .is-padding_l40_pc {
    padding-left: 40px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t40_sp {
    padding-top: 40px !important;
  }
  .is-padding_r40_sp {
    padding-right: 40px !important;
  }
  .is-padding_b40_sp {
    padding-bottom: 40px !important;
  }
  .is-padding_l40_sp {
    padding-left: 40px !important;
  }
}
.is-padding_t40 {
  padding-top: 40px !important;
}

.is-padding_r40 {
  padding-right: 40px !important;
}

.is-padding_b40 {
  padding-bottom: 40px !important;
}

.is-padding_l40 {
  padding-left: 40px !important;
}

@media (min-width: 561px) {
  .is-padding_t45_pc {
    padding-top: 45px !important;
  }
  .is-padding_r45_pc {
    padding-right: 45px !important;
  }
  .is-padding_b45_pc {
    padding-bottom: 45px !important;
  }
  .is-padding_l45_pc {
    padding-left: 45px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t45_sp {
    padding-top: 45px !important;
  }
  .is-padding_r45_sp {
    padding-right: 45px !important;
  }
  .is-padding_b45_sp {
    padding-bottom: 45px !important;
  }
  .is-padding_l45_sp {
    padding-left: 45px !important;
  }
}
.is-padding_t45 {
  padding-top: 45px !important;
}

.is-padding_r45 {
  padding-right: 45px !important;
}

.is-padding_b45 {
  padding-bottom: 45px !important;
}

.is-padding_l45 {
  padding-left: 45px !important;
}

@media (min-width: 561px) {
  .is-padding_t50_pc {
    padding-top: 50px !important;
  }
  .is-padding_r50_pc {
    padding-right: 50px !important;
  }
  .is-padding_b50_pc {
    padding-bottom: 50px !important;
  }
  .is-padding_l50_pc {
    padding-left: 50px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t50_sp {
    padding-top: 50px !important;
  }
  .is-padding_r50_sp {
    padding-right: 50px !important;
  }
  .is-padding_b50_sp {
    padding-bottom: 50px !important;
  }
  .is-padding_l50_sp {
    padding-left: 50px !important;
  }
}
.is-padding_t50 {
  padding-top: 50px !important;
}

.is-padding_r50 {
  padding-right: 50px !important;
}

.is-padding_b50 {
  padding-bottom: 50px !important;
}

.is-padding_l50 {
  padding-left: 50px !important;
}

@media (min-width: 561px) {
  .is-padding_t55_pc {
    padding-top: 55px !important;
  }
  .is-padding_r55_pc {
    padding-right: 55px !important;
  }
  .is-padding_b55_pc {
    padding-bottom: 55px !important;
  }
  .is-padding_l55_pc {
    padding-left: 55px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t55_sp {
    padding-top: 55px !important;
  }
  .is-padding_r55_sp {
    padding-right: 55px !important;
  }
  .is-padding_b55_sp {
    padding-bottom: 55px !important;
  }
  .is-padding_l55_sp {
    padding-left: 55px !important;
  }
}
.is-padding_t55 {
  padding-top: 55px !important;
}

.is-padding_r55 {
  padding-right: 55px !important;
}

.is-padding_b55 {
  padding-bottom: 55px !important;
}

.is-padding_l55 {
  padding-left: 55px !important;
}

@media (min-width: 561px) {
  .is-padding_t60_pc {
    padding-top: 60px !important;
  }
  .is-padding_r60_pc {
    padding-right: 60px !important;
  }
  .is-padding_b60_pc {
    padding-bottom: 60px !important;
  }
  .is-padding_l60_pc {
    padding-left: 60px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t60_sp {
    padding-top: 60px !important;
  }
  .is-padding_r60_sp {
    padding-right: 60px !important;
  }
  .is-padding_b60_sp {
    padding-bottom: 60px !important;
  }
  .is-padding_l60_sp {
    padding-left: 60px !important;
  }
}
.is-padding_t60 {
  padding-top: 60px !important;
}

.is-padding_r60 {
  padding-right: 60px !important;
}

.is-padding_b60 {
  padding-bottom: 60px !important;
}

.is-padding_l60 {
  padding-left: 60px !important;
}

@media (min-width: 561px) {
  .is-padding_t65_pc {
    padding-top: 65px !important;
  }
  .is-padding_r65_pc {
    padding-right: 65px !important;
  }
  .is-padding_b65_pc {
    padding-bottom: 65px !important;
  }
  .is-padding_l65_pc {
    padding-left: 65px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t65_sp {
    padding-top: 65px !important;
  }
  .is-padding_r65_sp {
    padding-right: 65px !important;
  }
  .is-padding_b65_sp {
    padding-bottom: 65px !important;
  }
  .is-padding_l65_sp {
    padding-left: 65px !important;
  }
}
.is-padding_t65 {
  padding-top: 65px !important;
}

.is-padding_r65 {
  padding-right: 65px !important;
}

.is-padding_b65 {
  padding-bottom: 65px !important;
}

.is-padding_l65 {
  padding-left: 65px !important;
}

@media (min-width: 561px) {
  .is-padding_t70_pc {
    padding-top: 70px !important;
  }
  .is-padding_r70_pc {
    padding-right: 70px !important;
  }
  .is-padding_b70_pc {
    padding-bottom: 70px !important;
  }
  .is-padding_l70_pc {
    padding-left: 70px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t70_sp {
    padding-top: 70px !important;
  }
  .is-padding_r70_sp {
    padding-right: 70px !important;
  }
  .is-padding_b70_sp {
    padding-bottom: 70px !important;
  }
  .is-padding_l70_sp {
    padding-left: 70px !important;
  }
}
.is-padding_t70 {
  padding-top: 70px !important;
}

.is-padding_r70 {
  padding-right: 70px !important;
}

.is-padding_b70 {
  padding-bottom: 70px !important;
}

.is-padding_l70 {
  padding-left: 70px !important;
}

@media (min-width: 561px) {
  .is-padding_t75_pc {
    padding-top: 75px !important;
  }
  .is-padding_r75_pc {
    padding-right: 75px !important;
  }
  .is-padding_b75_pc {
    padding-bottom: 75px !important;
  }
  .is-padding_l75_pc {
    padding-left: 75px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t75_sp {
    padding-top: 75px !important;
  }
  .is-padding_r75_sp {
    padding-right: 75px !important;
  }
  .is-padding_b75_sp {
    padding-bottom: 75px !important;
  }
  .is-padding_l75_sp {
    padding-left: 75px !important;
  }
}
.is-padding_t75 {
  padding-top: 75px !important;
}

.is-padding_r75 {
  padding-right: 75px !important;
}

.is-padding_b75 {
  padding-bottom: 75px !important;
}

.is-padding_l75 {
  padding-left: 75px !important;
}

@media (min-width: 561px) {
  .is-padding_t80_pc {
    padding-top: 80px !important;
  }
  .is-padding_r80_pc {
    padding-right: 80px !important;
  }
  .is-padding_b80_pc {
    padding-bottom: 80px !important;
  }
  .is-padding_l80_pc {
    padding-left: 80px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t80_sp {
    padding-top: 80px !important;
  }
  .is-padding_r80_sp {
    padding-right: 80px !important;
  }
  .is-padding_b80_sp {
    padding-bottom: 80px !important;
  }
  .is-padding_l80_sp {
    padding-left: 80px !important;
  }
}
.is-padding_t80 {
  padding-top: 80px !important;
}

.is-padding_r80 {
  padding-right: 80px !important;
}

.is-padding_b80 {
  padding-bottom: 80px !important;
}

.is-padding_l80 {
  padding-left: 80px !important;
}

@media (min-width: 561px) {
  .is-padding_t85_pc {
    padding-top: 85px !important;
  }
  .is-padding_r85_pc {
    padding-right: 85px !important;
  }
  .is-padding_b85_pc {
    padding-bottom: 85px !important;
  }
  .is-padding_l85_pc {
    padding-left: 85px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t85_sp {
    padding-top: 85px !important;
  }
  .is-padding_r85_sp {
    padding-right: 85px !important;
  }
  .is-padding_b85_sp {
    padding-bottom: 85px !important;
  }
  .is-padding_l85_sp {
    padding-left: 85px !important;
  }
}
.is-padding_t85 {
  padding-top: 85px !important;
}

.is-padding_r85 {
  padding-right: 85px !important;
}

.is-padding_b85 {
  padding-bottom: 85px !important;
}

.is-padding_l85 {
  padding-left: 85px !important;
}

@media (min-width: 561px) {
  .is-padding_t90_pc {
    padding-top: 90px !important;
  }
  .is-padding_r90_pc {
    padding-right: 90px !important;
  }
  .is-padding_b90_pc {
    padding-bottom: 90px !important;
  }
  .is-padding_l90_pc {
    padding-left: 90px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t90_sp {
    padding-top: 90px !important;
  }
  .is-padding_r90_sp {
    padding-right: 90px !important;
  }
  .is-padding_b90_sp {
    padding-bottom: 90px !important;
  }
  .is-padding_l90_sp {
    padding-left: 90px !important;
  }
}
.is-padding_t90 {
  padding-top: 90px !important;
}

.is-padding_r90 {
  padding-right: 90px !important;
}

.is-padding_b90 {
  padding-bottom: 90px !important;
}

.is-padding_l90 {
  padding-left: 90px !important;
}

@media (min-width: 561px) {
  .is-padding_t95_pc {
    padding-top: 95px !important;
  }
  .is-padding_r95_pc {
    padding-right: 95px !important;
  }
  .is-padding_b95_pc {
    padding-bottom: 95px !important;
  }
  .is-padding_l95_pc {
    padding-left: 95px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t95_sp {
    padding-top: 95px !important;
  }
  .is-padding_r95_sp {
    padding-right: 95px !important;
  }
  .is-padding_b95_sp {
    padding-bottom: 95px !important;
  }
  .is-padding_l95_sp {
    padding-left: 95px !important;
  }
}
.is-padding_t95 {
  padding-top: 95px !important;
}

.is-padding_r95 {
  padding-right: 95px !important;
}

.is-padding_b95 {
  padding-bottom: 95px !important;
}

.is-padding_l95 {
  padding-left: 95px !important;
}

@media (min-width: 561px) {
  .is-padding_t100_pc {
    padding-top: 100px !important;
  }
  .is-padding_r100_pc {
    padding-right: 100px !important;
  }
  .is-padding_b100_pc {
    padding-bottom: 100px !important;
  }
  .is-padding_l100_pc {
    padding-left: 100px !important;
  }
}
@media (max-width: 560px) {
  .is-padding_t100_sp {
    padding-top: 100px !important;
  }
  .is-padding_r100_sp {
    padding-right: 100px !important;
  }
  .is-padding_b100_sp {
    padding-bottom: 100px !important;
  }
  .is-padding_l100_sp {
    padding-left: 100px !important;
  }
}
.is-padding_t100 {
  padding-top: 100px !important;
}

.is-padding_r100 {
  padding-right: 100px !important;
}

.is-padding_b100 {
  padding-bottom: 100px !important;
}

.is-padding_l100 {
  padding-left: 100px !important;
}

.is-avenir {
  font-family: "Avenir", sans-serif;
}

.is-din {
  font-family: "DIN", sans-serif;
}

.mobile {
  display: block !important;
}
@media (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
}

.ipad {
  display: none !important;
}
@media (min-width: 561px) {
  .ipad {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media (min-width: 561px) {
  .sp {
    display: none !important;
  }
}

.js-modal-btn {
  cursor: pointer;
}
.js-modal-btn:hover {
  opacity: 0.8;
}

.wrapper {
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 40px);
  max-width: 1240px;
  margin: 0 auto;
}
.wrapper__inner {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
}

.btn {
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center !important;
  justify-content: center;
  text-align: center;
  transition: opacity 0.5s;
}
.btn:hover {
  opacity: 0.8 !important;
  color: #fff !important;
}
.btn-header {
  border-radius: 40px;
  background: #12B294;
  max-width: 220px;
  padding: 1.5rem 6rem;
  font-size: 2rem;
  color: #fff !important;
  font-weight: bold;
}
@media (max-width: 768px) {
  .btn-header {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 560px) {
  .btn-header {
    padding: 1.5rem 6rem;
    font-size: 2rem !important;
  }
}
.btn-footer {
  border-radius: 40px;
  background: #C66462;
  max-width: 220px;
  padding: 1.5rem 6rem;
  font-size: 2rem;
  color: #fff !important;
  font-weight: bold;
}
@media (max-width: 768px) {
  .btn-footer {
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 560px) {
  .btn-footer {
    padding: 1.5rem 6rem;
    font-size: 2rem;
  }
}
.btn-mv {
  width: fit-content;
  min-width: 372px;
  margin: 0 auto;
  padding: 20px 0;
  color: #fff !important;
  border-radius: 40px;
  background: #E74C3C;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 2.4rem;
  font-weight: 700;
}
.btn-mv-bottom {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  height: 90px;
  color: #fff !important;
  font-size: 3.2rem;
  font-weight: 700;
  background: rgb(18, 178, 148);
  background: linear-gradient(180deg, rgb(18, 178, 148) 0%, rgb(98, 198, 179) 50%);
  border-radius: 50px;
}
@media (max-width: 768px) {
  .btn-mv-bottom {
    width: calc(100% - 30px);
    font-size: 2rem;
    height: 60px;
    max-width: 500px;
  }
}
.btn-arrow {
  color: #C66462 !important;
  border: 2px solid #C66462;
  padding: 20px 40px;
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 700;
  background-color: #fff;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .btn-arrow {
    padding: 15px 40px;
    font-size: 2rem;
  }
}
.btn-arrow:hover {
  color: #C66462 !important;
}
.btn-arrow::after {
  content: url(../img/figma/ico_btn_arrow.svg);
  margin-left: 10px;
}
.btn-seminar {
  width: 100%;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 40px;
  background: #E74C3C;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 15px 0;
  margin: unset;
}
.btn-line {
  border-radius: 12px;
  background: #06C755;
  color: #fff !important;
  width: 100%;
  max-width: 500px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .btn-line {
    width: calc(100% - 30px);
    height: 100px;
    font-size: 2.2rem;
    line-height: normal;
    text-align: left;
  }
}
.btn-line::before {
  content: url(../img/figma/ico_line.png);
  margin-right: 10px;
}
@media (max-width: 768px) {
  .btn-line::before {
    margin-right: 0;
  }
}
.btn-form {
  border-radius: 40px;
  background: #E74C3C;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  width: 372px;
  padding: 20px 60px;
  margin: 0 auto;
  color: #fff !important;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .btn-form {
    padding: 15px 60px;
    width: 100%;
    max-width: 372px;
    font-size: 2rem;
  }
}
.btn-common {
  width: fit-content;
  min-width: 372px;
  margin: 0 auto;
  padding: 20px 0;
  color: #C66462 !important;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 560px) {
  .btn-common {
    width: 100%;
    min-width: 0;
  }
}
.btn-common:hover {
  color: #C66462 !important;
}

.form dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .form dl {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }
}
.form dl:last-of-type {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .form dl:last-of-type {
    margin-bottom: 40px;
  }
}
.form dl dt {
  width: 245px;
  margin-right: 43px;
  text-align: right;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: normal;
}
@media (max-width: 768px) {
  .form dl dt {
    justify-content: flex-start;
    width: fit-content;
    margin-bottom: 4px;
  }
}
.form dl dt span {
  margin-left: 30px;
  color: #fff;
  display: flex;
  width: 30px;
  height: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 2.5px;
  background: #EB6100;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .form dl dt span {
    margin-left: 16px;
  }
}
.form dl dt span.option {
  background: #808080;
}
.form dl dd {
  flex-grow: 1;
  position: relative;
}
@media (max-width: 768px) {
  .form dl dd {
    width: 100%;
  }
}
.form dl dd input:not([type=radio]), .form dl dd textarea {
  border-radius: 4px;
  border: 1px solid #808080;
  background: #F2F2F2;
  height: 60px;
  padding: 0 10px;
  resize: none;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 768px) {
  .form dl dd input:not([type=radio]), .form dl dd textarea {
    max-width: none;
  }
}
.form dl dd textarea {
  height: 180px;
}
.form dl dd p {
  position: absolute;
  font-size: 1.4rem;
  line-height: 2;
  bottom: -2.8rem;
}
@media (max-width: 768px) {
  .form dl dd p {
    position: relative;
    bottom: initial;
  }
}
@media (max-width: 560px) {
  .form dl dd p {
    font-size: 1.2rem;
  }
}
.form dl dd .mwform-radio-field label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .form dl dd .mwform-radio-field label {
    margin-bottom: 0;
  }
}
.form dl dd .mwform-radio-field label input[type=radio] {
  height: 18px;
  margin-right: 36px;
}
@media (max-width: 768px) {
  .form dl dd .mwform-radio-field label input[type=radio] {
    margin-right: 18px;
  }
}
.form .consent {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .form .consent {
    margin-bottom: 40px;
  }
}
.form .consent label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .consent input {
  width: 15px;
  height: 15px;
  margin-right: 15px;
}
.form .consent span {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .form .consent span {
    font-size: 1.6rem;
    line-height: normal;
  }
}

body.is-nonmember #modal_overlay {
  display: none !important;
}

.nonmember {
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}
.nonmember img {
  max-width: 100%;
}
.nonmember a:not(.btn):not(.page-numbers):hover {
  color: #1f1f1f !important;
}
.nonmember__header {
  padding: 13px 20px;
}
@media (max-width: 560px) {
  .nonmember__header {
    padding: 10px 20px;
  }
}
.nonmember__header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}
.nonmember__header__logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 560px) {
  .nonmember__header__logo img {
    height: 33px;
    width: auto;
  }
}
.nonmember__header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 560px) {
  .nonmember__header__nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    top: -100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nonmember__header__nav.is-open {
    top: 0;
    opacity: 1;
  }
}
.nonmember__header__nav a:not(.btn) {
  color: #1f1f1f !important;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 3rem;
  line-height: 2;
  border-bottom: 2px solid #fff;
}
@media (max-width: 768px) {
  .nonmember__header__nav a:not(.btn) {
    margin: 0 1rem;
  }
}
@media (max-width: 560px) {
  .nonmember__header__nav a:not(.btn) {
    font-size: 1.8rem;
    margin: 0 0 2.5rem;
  }
}
.nonmember__header__nav a:not(.btn):hover {
  border-bottom: 2px solid #C66462;
}
.nonmember__header__burger {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 100;
  height: 41px;
}
.nonmember__header__burger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #C66462;
  border-radius: 2px;
  margin: 8px 0;
  transition: transform 0.6s;
}
.nonmember__header__burger span:nth-child(2) {
  transition: none;
}
.nonmember__header__burger.is-open span:nth-child(1) {
  transform: rotate(-45deg);
  margin-top: 19px;
}
.nonmember__header__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: rotate(360deg);
}
.nonmember__header__burger.is-open span:nth-child(3) {
  transform: rotate(45deg);
  margin-top: -22px;
}
.nonmember__footer {
  padding: 80px 20px 20px;
  background: rgba(255, 230, 233, 0.5);
}
.nonmember__footer > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 560px) {
  .nonmember__footer > div {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .nonmember__footer__logo {
    padding-bottom: 1.5rem;
  }
}
.nonmember__footer__logo img {
  height: 50px;
  width: auto;
}
.nonmember__footer__nav {
  display: flex;
  align-items: center;
  padding-bottom: 4rem;
}
@media (max-width: 560px) {
  .nonmember__footer__nav {
    flex-direction: column;
  }
}
.nonmember__footer__nav a {
  color: #1f1f1f !important;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 5rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .nonmember__footer__nav a {
    margin: 0 1rem;
  }
}
@media (max-width: 560px) {
  .nonmember__footer__nav a {
    margin: 2rem 0 0;
  }
}
.nonmember__footer__nav2 {
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .nonmember__footer__nav2 {
    padding-left: 1rem;
  }
}
@media (max-width: 560px) {
  .nonmember__footer__nav2 {
    padding-left: 0;
    padding-bottom: 1.6rem;
  }
}
.nonmember__footer__nav2 a {
  color: #1f1f1f !important;
  font-size: 1.4rem;
  margin: 0 0 1.6rem;
  display: block;
  line-height: 2;
}
@media (max-width: 560px) {
  .nonmember__footer__nav2 a {
    text-align: center;
  }
}
.nonmember__footer__copy {
  padding-top: 5rem;
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 560px) {
  .nonmember__footer__copy {
    padding-top: 6.8rem;
  }
}
.nonmember__common .upper {
  padding: 120px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .nonmember__common .upper {
    padding: 25px 15px 20px;
    flex-direction: column-reverse;
  }
}
.nonmember__common .upper img {
  height: 180px;
  margin-right: 42px;
}
@media (max-width: 768px) {
  .nonmember__common .upper img {
    margin-right: 25px;
  }
}
@media (max-width: 560px) {
  .nonmember__common .upper img {
    margin-right: 0;
    margin-top: 20px;
  }
}
.nonmember__common .upper p {
  color: #C66462;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 4.8rem;
}
@media (max-width: 768px) {
  .nonmember__common .upper p {
    font-size: 2rem;
    line-height: 3.6rem;
  }
}
.nonmember__common .contact {
  padding: 66px 20px;
  background-color: #d18281;
  background-image: url(../img/figma/common_contact_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.nonmember__common .contact h3 {
  color: #FFE6E9;
  text-align: center;
  font-size: 4.4rem;
  font-weight: 700;
  padding-bottom: 40px;
}
.nonmember__common .contact p {
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.8rem;
  padding-bottom: 40px;
}

.nonmember .top section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .nonmember .top section {
    padding: 60px 0 0;
  }
}
.nonmember .top section .section__title {
  color: #1F1F1F;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 7.2rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .nonmember .top section .section__title {
    font-size: 2.8rem;
    margin-bottom: 22px;
    line-height: 4rem;
  }
}
.nonmember .top section .section__title.is-line {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 55px;
  line-height: 5.8rem;
}
@media (max-width: 768px) {
  .nonmember .top section .section__title.is-line {
    margin-bottom: 40px;
    line-height: 4rem;
  }
}
.nonmember .top section .section__title.is-line::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  height: 14px;
  width: 165px;
  background: url(../img/figma/top_title_line1.svg), url(../img/figma/top_title_line2.svg);
  background-repeat: no-repeat;
  background-position: left top, right top;
}
.nonmember .top section .section__side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .nonmember .top section .section__side {
    display: none;
  }
}
.nonmember .top section .section__side img {
  max-width: 120px;
}
.nonmember .top section .section__side.--left {
  left: 0;
}
.nonmember .top section .section__side.--right {
  right: 0;
}
.nonmember .top__mv {
  position: relative;
  padding: 60px 0 30px;
}
@media (max-width: 768px) {
  .nonmember .top__mv {
    padding: 35px 0 40px;
  }
}
.nonmember .top__mv::after {
  content: "";
  width: 100vw;
  height: 385px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  left: 64vw;
  top: 30px;
  z-index: 0;
}
@media (min-width: 1500px) {
  .nonmember .top__mv::after {
    left: 60vw;
  }
}
@media (max-width: 768px) {
  .nonmember .top__mv::after {
    left: 0;
    top: 0;
    border-radius: 0;
    height: 100%;
  }
}
.nonmember .top__mv > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div {
    flex-direction: column;
  }
}
.nonmember .top__mv > div .left {
  width: 60%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .left {
    align-items: center;
    width: 100%;
  }
}
.nonmember .top__mv > div .left p {
  font-size: 2.8rem;
  font-weight: 500;
  padding: 11px 30px 50px;
  background-image: url(../img/figma/top_mv_frame.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: fit-content;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .left p {
    font-size: 2rem;
    padding: 11px 17px 35px;
  }
}
.nonmember .top__mv > div .left h2 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 8.7rem;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .left h2 {
    color: #C66462;
    text-align: center;
    font-size: 4rem;
    line-height: 5.8rem;
  }
}
.nonmember .top__mv > div .left img {
  margin-top: 42px;
}
.nonmember .top__mv > div .right {
  width: 40%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.nonmember .top__mv > div .right img {
  margin-left: -30px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .right img {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .nonmember .top__mv > div .right .btn {
    display: none;
  }
}
.nonmember .top__mv__bottom {
  position: relative;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom {
    margin-top: -10px;
    padding: 0;
  }
}
.nonmember .top__mv__bottom > div {
  max-width: 1020px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div {
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100% - 10px);
  }
}
.nonmember .top__mv__bottom > div > div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div {
    margin-bottom: 20px;
  }
}
.nonmember .top__mv__bottom > div > div.image img {
  margin: 0 auto;
}
.nonmember .top__mv__bottom > div > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:first-child {
    flex-direction: column;
  }
}
.nonmember .top__mv__bottom > div > div:first-child ul {
  display: flex;
  align-items: center;
  margin: 0 2px;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:first-child ul {
    margin-bottom: 16px;
  }
}
.nonmember .top__mv__bottom > div > div:first-child ul li {
  padding: 5px 10px;
  border-radius: 20px;
  background: #C66462;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 2px;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:first-child ul li {
    font-size: 1.4rem;
  }
}
.nonmember .top__mv__bottom > div > div:first-child p {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:first-child p {
    text-align: center;
    line-height: 3.2rem;
  }
}
.nonmember .top__mv__bottom > div > div:nth-child(3) {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:nth-child(3) {
    text-align: center;
    display: block;
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
.nonmember .top__mv__bottom > div > div:nth-child(3) span {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > div:nth-child(3) span {
    font-size: 2rem;
  }
}
.nonmember .top__mv__bottom > div > div:nth-child(3) span:nth-of-type(1), .nonmember .top__mv__bottom > div > div:nth-child(3) span:last-of-type {
  color: #C66462;
}
.nonmember .top__mv__bottom > div > p {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom > div > p {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}
.nonmember .top__mv__bottom::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  right: 30vw;
  top: 0;
  z-index: 0;
}
@media (min-width: 1500px) {
  .nonmember .top__mv__bottom::after {
    right: 36.5vw;
  }
}
@media (max-width: 768px) {
  .nonmember .top__mv__bottom::after {
    content: none;
  }
}
.nonmember .top__sec1__content {
  display: flex;
  justify-content: center;
}
.nonmember .top__sec1__content .video {
  width: 100%;
  max-width: 817px !important;
  margin: 0 auto;
  position: relative;
}
.nonmember .top__sec1__content .video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.nonmember .top__sec1__content iframe {
  width: 100%;
  max-width: 817px !important;
  height: 463px;
}
@media (max-width: 560px) {
  .nonmember .top__sec1__content iframe {
    height: 212px;
  }
}
.nonmember .top__sec2 .wrapper {
  max-width: 940px;
}
.nonmember .top__sec2::after {
  content: "";
  width: 100vw;
  height: 372px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  left: 30vw;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1500px) {
  .nonmember .top__sec2::after {
    left: 34vw;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec2::after {
    content: none;
  }
}
.nonmember .top__sec2__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .nonmember .top__sec2__content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec2__content ul {
    padding-bottom: 5px;
  }
}
.nonmember .top__sec2__content ul li {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 68px;
  background-image: url(../img/figma/ico_check.svg);
  background-size: 33px 31px;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 768px) {
  .nonmember .top__sec2__content ul li {
    background-size: 20px;
    font-size: 1.8rem;
    line-height: 3.2rem;
    padding-left: 40px;
    margin-bottom: 20px;
  }
}
.nonmember .top__sec2__content ul li span {
  color: #C66462;
}
.nonmember .top__sec2__content img {
  height: 331px;
  width: auto;
}
@media (max-width: 768px) {
  .nonmember .top__sec2__content img {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec3 {
    padding-bottom: 60px !important;
    background-color: rgba(255, 230, 233, 0.3);
  }
}
.nonmember .top__sec3 .wrapper {
  max-width: 1050px;
}
.nonmember .top__sec3__title {
  text-align: center;
  font-weight: 700;
  font-size: 4.8rem;
  padding-bottom: 35px;
}
@media (max-width: 768px) {
  .nonmember .top__sec3__title {
    font-size: 2.8rem;
    line-height: 4rem;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.nonmember .top__sec3__title i {
  font-style: normal !important;
}
@media (max-width: 768px) {
  .nonmember .top__sec3__title i {
    display: none;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec3__title::before {
    content: "";
    height: 80px;
    width: 1px;
    background-color: #000;
    position: absolute;
    left: -35px;
    top: 38%;
    transform: translateY(-50%) rotate(-30deg);
  }
  .nonmember .top__sec3__title::after {
    content: "";
    height: 80px;
    width: 1px;
    background-color: #000;
    position: absolute;
    right: -35px;
    top: 38%;
    transform: translateY(-50%) rotate(30deg);
  }
}
.nonmember .top__sec3__title span {
  color: #C66462;
}
.nonmember .top__sec3__subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  padding-bottom: 48px;
  line-height: 4.8rem;
}
@media (max-width: 768px) {
  .nonmember .top__sec3__subtitle {
    font-size: 2rem;
    line-height: 3.2rem;
    padding-bottom: 20px;
  }
}
.nonmember .top__sec3__subtitle span {
  color: #C66462;
}
.nonmember .top__sec3__content {
  display: flex;
  justify-content: center;
}
@media (max-width: 560px) {
  .nonmember .top__sec3__content {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec4 {
    padding-bottom: 60px !important;
  }
}
.nonmember .top__sec4 .wrapper {
  max-width: 1050px;
}
.nonmember .top__sec4::after {
  content: "";
  width: 100vw;
  height: 505px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  left: 25.8vw;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1500px) {
  .nonmember .top__sec4::after {
    left: 32vw;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec4::after {
    content: none;
  }
}
.nonmember .top__sec4__content {
  position: relative;
  z-index: 1;
}
.nonmember .top__sec4__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .nonmember .top__sec4__content ul {
    padding-bottom: 0;
    gap: initial;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec4__content ul li {
    padding-bottom: 20px;
  }
}
.nonmember .top__sec4__content p {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .nonmember .top__sec4__content p {
    font-size: 1.6rem;
    line-height: 3.2rem;
    font-weight: 400;
  }
}
.nonmember .top__sec5 .wrapper {
  max-width: 1200px;
}
.nonmember .top__sec5__content ul {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 560px) {
  .nonmember .top__sec5__content ul {
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec5__content ul li {
    width: 30%;
  }
}
@media (max-width: 560px) {
  .nonmember .top__sec5__content ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 54px;
  }
}
.nonmember .top__sec5__content ul:first-child {
  justify-content: space-between;
  padding-bottom: 42px;
}
@media (max-width: 560px) {
  .nonmember .top__sec5__content ul:first-child {
    padding-bottom: 60px;
  }
}
.nonmember .top__sec5__content ul:first-child li {
  width: 32%;
  max-width: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .nonmember .top__sec5__content ul:first-child li {
    width: 31%;
    padding: 30px 0;
  }
}
@media (max-width: 560px) {
  .nonmember .top__sec5__content ul:first-child li {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
}
.nonmember .top__sec5__content ul:first-child li img {
  height: 90px;
  margin-bottom: 20px;
}
.nonmember .top__sec5__content ul:first-child li .title {
  position: relative;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.nonmember .top__sec5__content ul:first-child li .title span {
  color: #C66462;
}
.nonmember .top__sec5__content ul:first-child li .title::after {
  height: 4px;
  width: 58px;
  content: "";
  background-color: #C66462;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.nonmember .top__sec5__content ul:first-child li > p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.nonmember .top__sec5__content ul:first-child li.line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
}
@media (max-width: 768px) {
  .nonmember .top__sec5__content ul:first-child li.line {
    padding: 20px 10px;
  }
}
.nonmember .top__sec5__content ul:first-child li.line::after {
  content: "";
  width: 1px;
  background-color: #C66462;
  height: 267px;
}
@media (max-width: 560px) {
  .nonmember .top__sec5__content ul:first-child li.line::after {
    height: 1px;
    width: 267px;
  }
}
.nonmember .top__sec5__content > p {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding-bottom: 8px;
  border-bottom: 2px #1f1f1f solid;
  position: relative;
  margin-bottom: 27px;
}
@media (max-width: 768px) {
  .nonmember .top__sec5__content > p {
    margin-bottom: 40px;
  }
}
.nonmember .top__sec5__content > p::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6.5px 0 6.5px;
  border-color: #1f1f1f transparent transparent transparent;
}
@media (max-width: 768px) {
  .nonmember .top__sec6 {
    padding-bottom: 60px !important;
  }
}
.nonmember .top__sec6 .wrapper {
  max-width: 1200px;
}
.nonmember .top__sec6 .section__title {
  margin-bottom: 93px !important;
}
@media (max-width: 560px) {
  .nonmember .top__sec6 .section__title {
    margin-bottom: 40px !important;
  }
}
.nonmember .top__sec6__content > div {
  background-color: rgba(255, 230, 233, 0.3);
  border-radius: 20px;
  padding: 50px 70px;
  position: relative;
  width: 75%;
  max-width: 1038px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 42px;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div {
    width: 100%;
    flex-direction: column-reverse;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
  }
}
.nonmember .top__sec6__content > div .left {
  position: relative;
  z-index: 1;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .left {
    padding: 20px;
  }
}
.nonmember .top__sec6__content > div .left .company {
  color: #fff;
  background-color: #C66462;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
  padding: 5px;
  margin-bottom: 18px;
  width: fit-content;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .left .company {
    margin-bottom: 10px;
  }
}
.nonmember .top__sec6__content > div .left .people {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .left .people {
    margin-bottom: 10px;
  }
}
.nonmember .top__sec6__content > div .left > div {
  margin-top: 86px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 53px 70px 53px 30px;
  max-width: 310px;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .left > div {
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    background: none;
  }
}
.nonmember .top__sec6__content > div .left > div .title {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #C66462;
  padding-bottom: 2rem;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .left > div .title {
    padding-bottom: 10px;
  }
}
.nonmember .top__sec6__content > div .left > div p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.nonmember .top__sec6__content > div .image {
  position: absolute;
  z-index: 0;
  right: -60px;
  top: -50px;
  width: 80%;
  max-width: 720px;
  height: 516px;
  overflow: hidden;
}
@media (max-width: 560px) {
  .nonmember .top__sec6__content > div .image {
    position: relative;
    right: initial;
    top: initial;
    width: 100%;
    height: 210px;
  }
}
.nonmember .top__sec6__content > div .image img {
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .nonmember .top__sec7 {
    padding-bottom: 60px !important;
  }
}
.nonmember .top__sec7 .wrapper {
  max-width: 1275px;
}
@media (max-width: 768px) {
  .nonmember .top__sec7 .section__title {
    margin-bottom: 75px !important;
  }
}
.nonmember .top__sec7__content {
  padding-left: 90px;
}
@media (max-width: 768px) {
  .nonmember .top__sec7__content {
    padding-left: 0;
  }
}
.nonmember .top__sec7__content > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 560px) {
  .nonmember .top__sec7__content > div {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.nonmember .top__sec7__content > div a {
  width: 32%;
}
@media (max-width: 560px) {
  .nonmember .top__sec7__content > div a {
    width: 100%;
  }
  .nonmember .top__sec7__content > div a:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 560px) {
  .nonmember .top__sec8 {
    padding-bottom: 40px !important;
  }
}
.nonmember .top__sec8 .wrapper {
  max-width: 1090px;
}
@media (max-width: 560px) {
  .nonmember .top__sec8 .section__title {
    margin-bottom: 55px !important;
  }
}
.nonmember .top__sec8__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nonmember .top__sec8__content ul {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 44px;
  width: 100%;
}
@media (max-width: 560px) {
  .nonmember .top__sec8__content ul {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.nonmember .top__sec8__content ul li {
  width: 40%;
  max-width: 300px;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #C66462;
  background: #FFF;
}
@media (max-width: 768px) {
  .nonmember .top__sec8__content ul li {
    width: 35%;
    padding: 30px 20px;
  }
}
@media (max-width: 560px) {
  .nonmember .top__sec8__content ul li {
    width: calc(100% - 70px);
    padding: 40px 32px;
    margin-bottom: 24px;
  }
}
.nonmember .top__sec8__content ul li p {
  margin-bottom: 20px;
  font-family: "Avenir", sans-serif;
  text-align: center;
}
.nonmember .top__sec8__content ul li p:nth-child(1) {
  color: #C66462;
  font-size: 2.6rem;
  font-weight: 800;
}
.nonmember .top__sec8__content ul li p:nth-child(2) {
  color: #C66462;
  font-size: 4.8rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 6.6rem;
}
@media (max-width: 768px) {
  .nonmember .top__sec8__content ul li p:nth-child(2) {
    font-size: 3.5rem;
  }
}
@media (max-width: 560px) {
  .nonmember .top__sec8__content ul li p:nth-child(2) {
    font-size: 4.8rem;
  }
}
.nonmember .top__sec8__content ul li p:nth-child(2) span {
  font-size: 0.7em;
}
.nonmember .top__sec8__content ul li p:nth-child(3) {
  font-size: 1.6rem;
}
.nonmember .top__sec8__content ul li p:last-child {
  margin-bottom: 0;
  font-size: 1.8rem;
}
.nonmember .top__sec9 {
  padding-top: 0;
  padding-bottom: 70px !important;
}
.nonmember .top__sec9__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .nonmember .top__sec9__title {
    font-size: 2.2rem;
    line-height: 3.2rem;
    padding-bottom: 20px;
  }
}
.nonmember .top__sec9__title span {
  color: #C66462;
}
.nonmember .top__sec9 > div > p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .nonmember .top__sec9 > div > p {
    font-size: 1.8rem;
    line-height: 2.6rem;
    padding-bottom: 20px;
  }
}
.nonmember .top__sec9__content .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .nonmember .top__sec9__content .image {
    margin-bottom: 30px;
  }
}
.nonmember .top__sec9__content div:not(.image) {
  border-radius: 20px;
  border: 1px solid #000;
  padding: 40px;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .nonmember .top__sec9__content div:not(.image) {
    padding: 0;
    border: none;
  }
}
.nonmember .top__sec9__content div:not(.image) p {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .nonmember .top__sec9__content div:not(.image) p {
    font-size: 1.6rem;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
}
.nonmember .top__sec9__content div:not(.image) p::after {
  content: "";
  width: 48px;
  height: 4px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: #1f1f1f;
}
.nonmember .top__sec9__content div:not(.image) ul li {
  font-size: 1.8rem;
  line-height: 2;
  margin-left: 1em;
  text-indent: -1em;
}
@media (max-width: 768px) {
  .nonmember .top__sec9__content div:not(.image) ul li {
    font-size: 1.4rem;
    line-height: 2.1rem;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec10 {
    padding-bottom: 80px !important;
  }
}
.nonmember .top__sec10 .image {
  text-align: center;
}
.nonmember .top__sec10 ul li {
  border-radius: 20px;
  background: #FFF;
  padding: 25px 0 20px 0;
  margin: 0 16.5px 20px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.nonmember .top__sec10 ul li:last-child {
  margin-bottom: 0;
}
.nonmember .top__sec10 ul li div {
  background: rgba(255, 230, 233, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.nonmember .top__sec10 ul li div p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.nonmember .top__sec10 ul li div p:first-child {
  color: #C66462;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Avenir", sans-serif;
  font-weight: 800;
  line-height: 4rem;
  margin-right: 10px;
}
.nonmember .top__sec10 ul li img {
  margin-bottom: 20px;
}
.nonmember .top__sec10 ul li p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: left;
  padding: 0 20px;
}
.nonmember .top__sec11 {
  position: relative;
}
@media (max-width: 768px) {
  .nonmember .top__sec11 {
    padding: 80px 0 !important;
    background-color: rgba(255, 230, 233, 0.3);
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec11 .section__title {
    margin-bottom: 75px !important;
  }
}
.nonmember .top__sec11::after {
  content: "";
  width: 100vw;
  height: 712px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  right: 30vw;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 1500px) {
  .nonmember .top__sec11::after {
    right: 36.5vw;
  }
}
@media (max-width: 768px) {
  .nonmember .top__sec11::after {
    content: none;
  }
}
.nonmember .top__sec11__content {
  position: relative;
  z-index: 1;
}
.nonmember .top__sec11__content dl {
  width: 100%;
  max-width: 814px;
  margin: 0 auto 36px;
  border-radius: 20px;
  border: 1px solid #C66462;
  background: #FFF;
  padding: 20px;
}
@media (max-width: 768px) {
  .nonmember .top__sec11__content dl {
    width: calc(100% - 40px);
  }
}
.nonmember .top__sec11__content dl:last-child {
  margin-bottom: 0;
}
.nonmember .top__sec11__content dl dt {
  padding: 13px 0;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .nonmember .top__sec11__content dl dt {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
.nonmember .top__sec11__content dl dt span {
  flex-shrink: 0;
  margin-right: 40px;
  color: #C66462;
  font-size: 4rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .nonmember .top__sec11__content dl dt span {
    margin-right: 16px;
  }
}
.nonmember .top__sec11__content dl dd {
  padding: 13px 0;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .nonmember .top__sec11__content dl dd {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.nonmember .top__sec11__content dl dd span {
  flex-shrink: 0;
  margin-right: 40px;
  color: #B5B5B5;
  font-size: 4rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .nonmember .top__sec11__content dl dd span {
    margin-right: 16px;
  }
}
.nonmember .top__sec12 {
  margin-bottom: 200px;
  padding-bottom: 0 !important;
}
@media (max-width: 768px) {
  .nonmember .top__sec12 {
    margin-bottom: 100px;
  }
}
.nonmember .top__sec12 .wrapper {
  max-width: 1000px;
}
.nonmember .top__sec12 .wrapper .section__title {
  color: #1F1F1F;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 7.2rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .nonmember .top__sec12 .wrapper .section__title {
    font-size: 2.8rem;
    margin-bottom: 55px;
  }
}
.nonmember .top__sec12 .wrapper .section__title.is-line {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 55px;
  line-height: 5.8rem;
}
.nonmember .top__sec12 .wrapper .section__title.is-line::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  height: 14px;
  width: 165px;
  background: url(../img/figma/top_title_line1.svg), url(../img/figma/top_title_line2.svg);
  background-repeat: no-repeat;
  background-position: left top, right top;
}

.seminar__link {
  max-width: 380px;
}
.seminar__card {
  padding: 25px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 560px) {
  .seminar__card {
    padding: 0 20px 40px;
    overflow: hidden;
  }
}
.seminar__card .seminar__image {
  width: 100%;
  margin-bottom: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .seminar__card .seminar__image {
    height: 120px;
  }
}
@media (max-width: 560px) {
  .seminar__card .seminar__image {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: 190px;
    display: flex;
    justify-content: center;
  }
}
.seminar__card .seminar__image img {
  width: 100%;
}
@media (max-width: 560px) {
  .seminar__card .seminar__image img {
    width: auto;
    max-width: none;
    height: 100%;
    margin: 0 auto;
  }
}
.seminar__card .seminar__date {
  font-size: 1.4rem;
  line-height: 3.2rem;
}
.seminar__card .seminar__title {
  color: #C66462;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin-bottom: 12px;
}
.seminar__card dl {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.seminar__card dl dt {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  width: 60px;
  padding: 4px;
  flex-shrink: 0;
  background: #808080;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seminar__card dl dd {
  font-size: 1.4rem;
  line-height: 2rem;
}
.seminar__card .seminar__point {
  border-radius: 8px;
  background: rgba(255, 230, 233, 0.5);
  padding: 12px;
  margin-bottom: 24px;
}
.seminar__card .seminar__point > p {
  color: #C66462;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin-bottom: 10px;
}
.seminar__card .seminar__point ul li {
  margin-bottom: 10px;
  color: #1F1F1F;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-left: 1em;
  text-indent: -1em;
}
.seminar__card .seminar__point ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .seminar__single {
    padding-bottom: 60px;
  }
}
.seminar__single__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .seminar__single__content {
    flex-direction: column;
  }
}
.seminar__single__content .left {
  width: 55%;
  max-width: 580px;
}
@media (max-width: 768px) {
  .seminar__single__content .left {
    width: 100%;
    max-width: 100%;
  }
}
.seminar__single__content .left .image {
  margin-bottom: 40px;
}
.seminar__single__content .left .image img {
  width: 100%;
}
.seminar__single__content .left > dl {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.seminar__single__content .left > dl:nth-of-type(4) {
  margin-bottom: 40px;
}
.seminar__single__content .left > dl dt {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  width: 70px;
  padding: 4px;
  flex-shrink: 0;
  background: #808080;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seminar__single__content .left > dl dd {
  font-size: 1.4rem;
  line-height: 2rem;
}
.seminar__single__content .left .overview {
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 230, 233, 0.3);
  margin-bottom: 40px;
}
.seminar__single__content .left .overview h3 {
  color: #C66462;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding-bottom: 8px;
  text-align: center;
}
.seminar__single__content .left .overview p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
}
.seminar__single__content .left .seminar__point {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 560px) {
  .seminar__single__content .left .seminar__point {
    flex-direction: column;
  }
}
.seminar__single__content .left .seminar__point img {
  margin-right: 28px;
}
@media (max-width: 560px) {
  .seminar__single__content .left .seminar__point img {
    margin-right: 0;
    margin-bottom: 28px;
  }
}
.seminar__single__content .left .seminar__point ul li {
  padding-left: 26px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
  background-image: url(../img/figma/ico_check1.svg);
  background-repeat: no-repeat;
  background-position: left center;
}
.seminar__single__content .left .schedule {
  padding: 25px;
  border: 1px solid #C66462;
  background: #FFF;
  margin-bottom: 60px;
}
@media (max-width: 560px) {
  .seminar__single__content .left .schedule {
    margin-bottom: 85px;
  }
}
.seminar__single__content .left .schedule h3 {
  color: #C66462;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding-bottom: 8px;
  text-align: center;
}
.seminar__single__content .left .schedule div {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3rem;
}
.seminar__single__content .left .profile h3 {
  color: #C66462;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 20px;
}
.seminar__single__content .left .profile__content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media (max-width: 560px) {
  .seminar__single__content .left .profile__content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.seminar__single__content .left .profile__content:last-child {
  margin-bottom: 84px;
}
.seminar__single__content .left .profile__content .image {
  width: 135px;
  margin-right: 30px;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .seminar__single__content .left .profile__content .image {
    width: 200px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.seminar__single__content .left .profile__content .text div {
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
.seminar__single__content .left .profile__content .text div p {
  font-size: 1.4rem;
  line-height: 2rem;
  padding-bottom: 4px;
}
@media (max-width: 560px) {
  .seminar__single__content .left .profile__content .text div p {
    padding-bottom: 12px;
    text-align: center;
  }
}
.seminar__single__content .left .profile__content .text div p:first-child {
  font-weight: 700;
}
.seminar__single__content .left .profile__content .text > p {
  font-size: 1.3rem;
  line-height: 2rem;
  padding-top: 16px;
}
.seminar__single__content .right {
  width: 40%;
  max-width: 480px;
  border-radius: 12px;
  border: 4px solid #C66462;
  background: #FFF;
  overflow: hidden;
}
@media (max-width: 768px) {
  .seminar__single__content .right {
    width: 100%;
    max-width: 100%;
  }
}
.seminar__single__content .right h3 {
  background-color: #C66462;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  padding: 10px;
  text-align: center;
  border: 1px solid #C66462;
}
.seminar__single__content .right > div {
  padding: 30px 25px;
  background-color: #fff;
}
@media (max-width: 560px) {
  .seminar__single__content .right > div > div {
    padding: 30px 25px 40px;
  }
}
.seminar__single__content .right > div dl {
  margin-bottom: 10px;
}
.seminar__single__content .right > div dl:last-child {
  margin-bottom: 40px;
}
.seminar__single__content .right > div dl dt {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 10px;
}
.seminar__single__content .right > div dl dt span {
  margin-left: 30px;
  color: #fff;
  display: flex;
  width: 30px;
  height: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 2.5px;
  background: #EB6100;
  font-size: 1rem;
}
.seminar__single__content .right > div dl dt span.option {
  background: #808080;
}
.seminar__single__content .right > div dl dd input {
  height: 48px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #808080;
  background: #F2F2F2;
  width: 100%;
}

.casestudy .archive__content {
  gap: 60px;
}
@media (max-width: 768px) {
  .casestudy .archive__content {
    gap: 30px;
  }
}
@media (max-width: 560px) {
  .casestudy .archive__content {
    gap: initial;
  }
}
.casestudy .archive__content a {
  width: 360px;
}
@media (max-width: 768px) {
  .casestudy .archive__content a {
    width: calc(50% - 15px);
  }
}
@media (max-width: 560px) {
  .casestudy .archive__content a {
    width: 100%;
    margin-bottom: 40px;
  }
}
.casestudy .archive__content a .image {
  border-radius: 10px;
  height: 227px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.casestudy .archive__content a .image img {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: none;
  left: 50%;
  transform: translateX(-50%);
}
.casestudy .archive__content a h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.casestudy .archive__content a .date {
  color: #808080;
  font-size: 1.3rem;
  font-family: "DIN", sans-serif;
  font-weight: 700;
  line-height: 3.2rem;
}
.casestudy__single {
  padding: 97px 0 20px;
}
@media (max-width: 560px) {
  .casestudy__single {
    padding-top: 0;
  }
}
.casestudy__single .title {
  color: #C66462;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 4.8rem;
}
@media (max-width: 560px) {
  .casestudy__single .title {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}
.casestudy__single .wrapper__inner > div {
  margin-bottom: 40px;
}
.casestudy__single .wrapper__inner > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div:nth-child(2) {
    margin-bottom: 30px;
  }
}
.casestudy__single .wrapper__inner > div:nth-child(2) p {
  color: #808080;
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 25px;
}
.casestudy__single .wrapper__inner > div:nth-child(2) p img {
  height: 12px;
  margin-right: 12px;
}
.casestudy__single .wrapper__inner > div.image {
  border-radius: 12px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.image {
    margin-bottom: 27px;
  }
}
.casestudy__single .wrapper__inner > div.content {
  font-size: 1.6rem;
  line-height: 2;
}
.casestudy__single .wrapper__inner > div.is-orange {
  border-radius: 12px;
  background: rgba(255, 230, 233, 0.5);
  padding: 20px;
}
.casestudy__single .wrapper__inner > div.is-orange dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.is-orange dl {
    flex-direction: column;
  }
}
.casestudy__single .wrapper__inner > div.is-orange dl:last-child {
  margin-bottom: 0;
}
.casestudy__single .wrapper__inner > div.is-orange dl dt {
  display: flex;
  align-items: center;
  color: #808080;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
  margin-right: 25px;
  width: 175px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.is-orange dl dt {
    margin-right: 0;
    width: fit-content;
  }
}
.casestudy__single .wrapper__inner > div.is-orange dl dt img {
  height: 16px;
  margin-right: 12px;
}
.casestudy__single .wrapper__inner > div.is-orange dl dd {
  font-size: 1.4rem;
  line-height: 2rem;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.is-orange dl dd {
    line-height: 2;
  }
}
.casestudy__single .wrapper__inner > div.profile table {
  border-collapse: separate;
  border-radius: 12px;
}
.casestudy__single .wrapper__inner > div.profile table tr th {
  border-collapse: separate;
  background-color: #C66462;
  padding: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 12px 12px 0 0;
}
.casestudy__single .wrapper__inner > div.profile table tr td {
  border-collapse: separate;
  border: 1px solid #B5B5B5;
  padding: 10px 20px;
  font-size: 1.6rem;
  height: 60px;
  line-height: 2.8rem;
  background-color: #fff;
  border-top: none;
  vertical-align: middle;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.profile table tr td {
    height: auto;
    display: block;
  }
}
.casestudy__single .wrapper__inner > div.profile table tr td:first-child {
  background: rgba(255, 230, 233, 0.5);
  color: #808080;
  width: 205px;
  font-weight: 700;
  vertical-align: middle;
  border-right: none;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.profile table tr td:first-child {
    width: auto;
    border-right: 1px solid #B5B5B5;
  }
}
.casestudy__single .wrapper__inner > div.profile table tr:last-child td {
  border-radius: 0 0 12px 0;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.profile table tr:last-child td {
    border-radius: 0;
  }
}
.casestudy__single .wrapper__inner > div.profile table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.profile table tr:last-child td:first-child {
    border-radius: 0;
  }
}
.casestudy__single .wrapper__inner > div.profile table tr:last-child td:last-child {
  border-radius: 0 0 12px 12px;
}
.casestudy__single .wrapper__inner > div.interview {
  margin-bottom: 100px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview {
    margin-bottom: 40px;
  }
}
.casestudy__single .wrapper__inner > div.interview h3 {
  color: #C66462;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview h3 {
    font-size: 1.8rem;
  }
}
.casestudy__single .wrapper__inner > div.interview .interview__content dl dt, .casestudy__single .wrapper__inner > div.interview .interview__content dl dd {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview .interview__content dl dt, .casestudy__single .wrapper__inner > div.interview .interview__content dl dd {
    gap: initial;
  }
}
.casestudy__single .wrapper__inner > div.interview .interview__content dl dt {
  justify-content: flex-end;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview .interview__content dl dt img {
    margin-left: 8px;
  }
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview .interview__content dl dd img {
    margin-right: 8px;
  }
}
.casestudy__single .wrapper__inner > div.interview .interview__content dl img {
  height: 100px;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview .interview__content dl img {
    height: 84px;
  }
}
.casestudy__single .wrapper__inner > div.interview .interview__content dl p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #808080;
  max-width: 548px;
  background: #FFF;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.interview .interview__content dl p {
    flex-grow: 1;
  }
}
.casestudy__single .wrapper__inner > div.video h3 {
  color: #C66462;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.video h3 {
    padding-bottom: 20px;
  }
}
.casestudy__single .wrapper__inner > div.video > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casestudy__single .wrapper__inner > div.video > div iframe {
  width: 100%;
  height: 432px;
}
@media (max-width: 560px) {
  .casestudy__single .wrapper__inner > div.video > div iframe {
    height: 200px;
  }
}
.casestudy__single .wrapper__inner > div.video > div .video__cont {
  position: relative;
}
.casestudy__single .wrapper__inner > div.video > div .video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.partner section {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .partner section {
    padding: 50px 0;
  }
}
.partner section .partner__section__title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 40px;
  line-height: normal;
}
@media (max-width: 768px) {
  .partner section .partner__section__title {
    font-size: 2.6rem;
    line-height: 4rem;
  }
}
.partner section .partner__section__title span {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .partner section .partner__section__title span {
    font-size: 1.8rem;
  }
}
.partner__mv {
  padding: 100px 0 80px;
  position: relative;
}
@media (max-width: 560px) {
  .partner__mv {
    padding: 0 0 50px;
  }
}
.partner__mv::after {
  content: "";
  width: 100vw;
  height: 503px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  right: 35vw;
  bottom: 100px;
  z-index: 0;
}
@media (min-width: 1500px) {
  .partner__mv::after {
    right: 35vw;
  }
}
@media (max-width: 560px) {
  .partner__mv::after {
    right: initial;
    bottom: initial;
    top: 80%;
    height: 320px;
    border-radius: 0;
  }
}
.partner__mv div {
  position: relative;
  z-index: 1;
}
.partner__mv .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
@media (max-width: 560px) {
  .partner__mv .image {
    margin-bottom: 60px;
  }
}
.partner__mv .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner__mv .text h2 {
  border-top: 3px solid #C66462;
  border-bottom: 3px solid #C66462;
  display: flex;
  color: #C66462;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 5.8rem;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .partner__mv .text h2 {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.partner__mv .text p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 560px) {
  .partner__mv .text p {
    font-size: 1.8rem;
  }
}
.partner__sec1::after {
  content: "";
  width: 100vw;
  height: 348px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  left: 35vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media (min-width: 1500px) {
  .partner__sec1::after {
    left: 35vw;
  }
}
@media (max-width: 560px) {
  .partner__sec1::after {
    content: none;
  }
}
.partner__sec1__content {
  position: relative;
  z-index: 1;
}
.partner__sec1__content .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.partner__sec1__content p {
  color: #C66462;
  text-align: center;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .partner__sec1__content p {
    font-size: 1.8rem;
  }
}
.partner__sec2 {
  padding-bottom: 0 !important;
}
.partner__sec2 .wrapper {
  max-width: 1020px;
}
.partner__sec2__sub {
  position: relative;
  padding: 0 0 120px;
}
.partner__sec2__sub:nth-child(1)::after {
  content: "";
  width: 100vw;
  height: 450px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  right: 35vw;
  bottom: 80px;
  z-index: 0;
}
@media (min-width: 1500px) {
  .partner__sec2__sub:nth-child(1)::after {
    right: 35vw;
  }
}
@media (max-width: 560px) {
  .partner__sec2__sub:nth-child(1)::after {
    right: initial;
    left: 35vw;
    bottom: initial;
    top: 50%;
    transform: translateY(-50%);
  }
}
.partner__sec2__sub:nth-child(3)::after {
  content: "";
  width: 100vw;
  height: 503px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  left: 35vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media (min-width: 1500px) {
  .partner__sec2__sub:nth-child(3)::after {
    left: 35vw;
  }
}
@media (max-width: 560px) {
  .partner__sec2__sub:nth-child(3)::after {
    height: 700px;
    bottom: 400px;
    top: initial;
    transform: none;
  }
}
.partner__sec2__sub:nth-child(3)::before {
  content: none;
  width: 100vw;
  height: 700px;
  background-color: #FFE6E9;
  border-radius: 20px;
  opacity: 0.3;
  position: absolute;
  right: 35vw;
  top: 200px;
  z-index: 0;
}
@media (max-width: 560px) {
  .partner__sec2__sub:nth-child(3)::before {
    content: "";
  }
}
.partner__sec2__content {
  position: relative;
  z-index: 1;
}
.partner__sec2__content > ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 560px) {
  .partner__sec2__content > ul {
    flex-direction: column;
    align-items: center;
  }
}
.partner__sec2__content > ul li {
  width: 50%;
  max-width: 378px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin: 0 50px;
}
@media (max-width: 768px) {
  .partner__sec2__content > ul li {
    margin: 0 20px;
  }
}
@media (max-width: 560px) {
  .partner__sec2__content > ul li {
    width: 100%;
  }
  .partner__sec2__content > ul li:not(:last-child) {
    margin: 0 0 40px;
  }
}
.partner__sec2__content > ul li .image {
  background: rgba(98, 198, 179, 0.2);
  margin-bottom: 20px;
  padding: 27px 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner__sec2__content > ul li .image img {
  height: 210px;
}
@media (max-width: 768px) {
  .partner__sec2__content > ul li .image img {
    height: auto;
  }
}
.partner__sec2__content > ul li div:not(.image) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner__sec2__content > ul li div:not(.image) span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #62C6B3;
  width: 56px;
  padding: 2px 8px;
  margin-right: 8px;
  color: #fff;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 700;
}
.partner__sec2__content > ul li div:not(.image) p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.partner__sec2__content > ul li > p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  padding: 25px;
}
.partner__sec2__content > ul li:first-child .image {
  background: rgba(255, 230, 233, 0.3);
}
.partner__sec2__content > ul li:first-child div:not(.image) span {
  background-color: #C66462;
}
.partner__sec2__subsection .partner__subsection__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__title {
    font-size: 2.3rem;
  }
}
.partner__sec2__subsection .partner__subsection__title::after {
  content: url(../img/figma/ico_partner_arrow.svg);
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}
.partner__sec2__subsection .partner__subsection__content .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__content .image {
    flex-direction: column;
    align-items: center;
  }
}
.partner__sec2__subsection .partner__subsection__content .image.flex {
  padding: 30px 36px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}
.partner__sec2__subsection .partner__subsection__content .image.flex span {
  width: 1px;
  height: 270px;
  background: #808080;
  margin: 0 50px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .partner__sec2__subsection .partner__subsection__content .image.flex span {
    margin: 0 20px;
  }
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__content .image.flex span {
    height: 1px;
    width: 270px;
    margin: 20px 0;
  }
}
.partner__sec2__subsection .partner__subsection__content .image.flex img {
  max-width: 48%;
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__content .image.flex img {
    width: 100%;
    max-width: 100%;
  }
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table th, .partner__sec2__subsection .partner__subsection__content .table .ipad table td {
  vertical-align: middle;
  text-align: center;
  font-size: 1.8rem;
  width: 35%;
  max-width: 350px;
  border: 1px solid #fff;
  border-collapse: collapse;
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table th:first-child, .partner__sec2__subsection .partner__subsection__content .table .ipad table td:first-child {
  width: 30%;
  max-width: 286px;
  height: 60px;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table td:first-child {
  background: #F2F2F2;
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table td:nth-child(2) {
  background: rgba(255, 230, 233, 0.3);
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table td:nth-child(3) {
  background: rgba(98, 198, 179, 0.1);
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table th:first-child {
  background: transparent;
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table th:nth-child(2) {
  background: #C66462;
  color: #fff !important;
}
.partner__sec2__subsection .partner__subsection__content .table .ipad table th:nth-child(3) {
  background: #62C6B3;
  color: #fff !important;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table tr th, .partner__sec2__subsection .partner__subsection__content .table .sp table tr td {
  vertical-align: middle;
  text-align: center;
  font-size: 1.8rem;
  border: 1px solid #fff;
  border-collapse: collapse;
  height: 60px;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table tr th {
  background: #C66462;
  color: #fff !important;
  font-weight: 700;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table tr td {
  font-size: 1.6rem;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table tr td:first-child {
  background: #F2F2F2;
  width: 128px;
  font-weight: 500;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table tr td:nth-child(2) {
  background: rgba(255, 230, 233, 0.3);
}
.partner__sec2__subsection .partner__subsection__content .table .sp table:last-child {
  margin-top: 40px;
}
.partner__sec2__subsection .partner__subsection__content .table .sp table:last-child tr th {
  background: #62C6B3;
  color: #fff !important;
}
.partner__sec2__subsection .partner__subsection__content .merit {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__content .merit {
    gap: initial;
  }
}
.partner__sec2__subsection .partner__subsection__content .merit li {
  width: 32%;
  max-width: 258px;
  border-radius: 20px;
  border: 2px solid #C66462;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 25px;
}
@media (max-width: 560px) {
  .partner__sec2__subsection .partner__subsection__content .merit li {
    width: 100%;
  }
  .partner__sec2__subsection .partner__subsection__content .merit li:not(:last-child) {
    margin-bottom: 36px;
  }
}
.partner__sec2__subsection .partner__subsection__content .merit li div:not(.image) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner__sec2__subsection .partner__subsection__content .merit li div:not(.image) p {
  color: #C66462;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 10px;
  text-align: center;
}
.partner__sec2__subsection .partner__subsection__content .merit li div:not(.image) p:nth-child(2) {
  font-size: 4rem;
  line-height: 1;
}
.partner__sec2__subsection .partner__subsection__content .merit li div:not(.image) p:last-child {
  color: #1f1f1f;
  font-size: 2rem;
  line-height: 3.2rem;
  text-align: center;
}
.partner__sec2__subsection .partner__subsection__content .merit li div.image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.partner__sec2__subsection .partner__subsection__content .merit li div.image img {
  width: 64px;
}
.partner__sec2__subsection .partner__subsection__content .merit li > p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.archive__title {
  padding: 100px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .archive__title {
    padding: 60px 0 40px;
  }
}
.archive__title.sp {
  display: none !important;
}
@media (max-width: 560px) {
  .archive__title.sp {
    display: flex !important;
    align-items: center;
    flex-direction: column;
  }
}
.archive__title p {
  color: #FFE6E9;
  text-align: center;
  font-size: 4.4rem;
  font-family: "DIN", sans-serif;
  font-weight: 700;
  padding-bottom: 13px;
}
.archive__title h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .archive__title h2 {
    font-size: 2.8rem;
  }
}
.archive__content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 30px;
}
@media (max-width: 768px) {
  .archive__content {
    gap: 30px 30px;
  }
}
@media (max-width: 560px) {
  .archive__content {
    gap: initial;
  }
}
.archive__content a {
  width: 380px;
}
@media (max-width: 768px) {
  .archive__content a {
    width: calc(50% - 15px);
  }
}
@media (max-width: 560px) {
  .archive__content a {
    width: 100%;
    margin-bottom: 40px;
  }
}
.archive__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .archive__pagination {
    margin: 20px auto 40px;
  }
}
.archive__pagination > * {
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border: 1px solid #C66462;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #C66462;
  background-color: #fff;
}
@media (max-width: 768px) {
  .archive__pagination > * {
    font-size: 1.6;
  }
}
.archive__pagination > *:hover {
  font-weight: 700;
  color: #fff !important;
  background-color: #C66462;
  border-color: #C66462;
}
.archive__pagination .current {
  font-weight: 700;
  color: #fff;
  background-color: #C66462;
  border-color: #C66462;
}
.archive__pagination .next, .archive__pagination .prev {
  font-weight: 700;
  font-size: 3rem;
}
.archive__pagination .next p, .archive__pagination .prev p {
  margin-top: -5px;
}
@media (max-width: 768px) {
  .archive__pagination .next p, .archive__pagination .prev p {
    margin-top: -8px;
  }
}

.mypage a:hover {
  color: #000 !important;
}
.mypage__main {
  width: 100%;
}
.mypage #header.no_menu {
  border-bottom: none;
}
.mypage #header__logout {
  background-color: #d18280 !important;
  color: #fff;
  font-weight: bold;
}

html.mobile {
  display: block !important;
}

html.pc {
  display: block !important;
}

a {
  text-decoration: none !important;
}/*# sourceMappingURL=custom.css.map */