@charset "UTF-8";
.breadcrumb {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width:599px ) {
  .breadcrumb {
    font-size: 1.4rem;
  }
}
.breadcrumb::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100vw;
  bottom: 0;
  left: 50%;
  background-color: #909090;
  /* margin: 0 calc(50% - 50vw); */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li a {
  word-break: break-all;
}
.breadcrumb li:not(:first-child) {
  margin-left: 24px;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 12px;
  width: 12px;
  background-image: url(../img/arrow-brown.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.btnStyle01 {
  padding: 16px 0;
  position: relative;
  max-width: 420px;
  width: 100%;
  background-color: #A7A7A7;
  text-align: center;
  border-radius: 999px;
  font-size: 1.6rem;
}
.btnStyle01::after {
  content: "";
  position: absolute;
  display: block;
  height: 7px;
  width: 16px;
  background: url(../img/arrow.png) no-repeat center/contain;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.btnStyle01--contact {
  background-color: #FEF814;
  border: 1px solid #FEF814;
  color: #D53F21;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 500;
}
.btnStyle01--contact:hover {
  background-color: #D53F21;
  color: white;
}
.btnStyle01--contact:hover::after {
  -webkit-filter: brightness(99);
          filter: brightness(99);
}
.btnStyle01--contact::after {
  background: url(../img/arrow-red.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 12px;
  width: 14px;
}
.btnStyle01--coming-soon {
  pointer-events: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.btnStyle02 {
  font-size: 1.6rem;
  padding: 16px 24px;
  max-width: 420px;
  width: 93%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 9999px;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:599px ) {
  .btnStyle02 {
    width: 100%;
  }
}
.btnStyle02::before, .btnStyle02::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 16px;
  height: 2px;
  width: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btnStyle02.info-btn {
  color: #D53F21;
  border: 1px solid #D53F21;
}
.btnStyle02.info-btn:hover {
  background-color: #D53F21;
  color: #fff;
}
.btnStyle02.info-btn::before {
  background-color: #D53F21;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.btnStyle02.info-btn::after {
  background-color: #D53F21;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 20px;
}
.btnStyle02.info-btn:hover::before, .btnStyle02.info-btn:hover::after {
  background-color: #fff;
}

.btnStyle02.entry-btn {
  color: #FFA126;
  border: 1px solid #FFA126;
}
.btnStyle02.entry-btn:hover {
  background-color: #FFA126;
  color: #fff;
}
.btnStyle02.entry-btn::before {
  background-color: #FFA126;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.btnStyle02.entry-btn::after {
  background-color: #FFA126;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 20px;
}
.btnStyle02.entry-btn:hover::before, .btnStyle02.entry-btn:hover::after {
  background-color: #fff;
}

.submit-fix {
  position: fixed;
  bottom: 72px;
  right: 72px;
  height: auto;
  width: 100%;
  max-width: 300px;
  z-index: 998;
  cursor: pointer;
  display: none;
}
.submit-fix.active {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: block;
}
.submit-fix.active:hover {
  opacity: 0.7;
}
@media screen and (max-width:599px ) {
  .submit-fix {
    max-width: 300px;
    bottom: 32px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.submit-fix > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.CardStyle01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.CardStyle01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.3333333333% - 46.6666666667px);
  margin-right: 70px;
  margin-bottom: 15px;
}
@media screen and (max-width:1024px ) {
  .CardStyle01 li {
    width: calc(50% - 17.5px);
    margin-right: 35px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width:599px ) {
  .CardStyle01 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 64px;
  }
}
.CardStyle01 li:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width:1024px ) {
  .CardStyle01 li:nth-of-type(2n) {
    margin-right: 0;
  }
}

.lower-inner {
  max-width: 1240px;
  width: 93%;
  margin: 0 auto;
  position: relative;
}
.lower-inner--hidden {
  overflow: hidden;
}
@media screen and (max-width:1024px ) {
  .lower-inner {
    width: 93%;
  }
}

/* モーダルの初期状態は表示なし */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.75); /* Black w/ opacity */
}

/* モーダルの表示時 */
/* モーダルコンテンツ */
.modal-content {
  background-color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 40px 80px;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 700px;
  border: 4px solid #D53F21;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width:599px ) {
  .modal-content {
    padding: 32px 16px;
    margin: 15% auto 5%; /* 15% from the top and centered */
  }
}
.modal-content h3 {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.modal-content h3 > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal__texts {
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
  margin-top: 12px;
}

.modal__notice {
  text-align: center;
  color: #D53F21;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
}

/* クローズボタン */
.close {
  position: absolute;
  color: #fff !important;
  top: 0;
  right: -80px;
}
@media screen and (max-width:599px ) {
  .close {
    top: initial;
    bottom: -32px;
    right: 43%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.close span {
  position: relative;
  top: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width:599px ) {
  .close span {
    position: absolute;
    top: 50%;
    left: -56px;
    right: initial;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    white-space: nowrap;
  }
}
.close::before, .close::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 24px;
  top: 0%;
  left: 50%;
  background-color: #fff;
}
.close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.TitleStyle01 {
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .TitleStyle01.TitleStyle01--info {
    background-color: #FFE9A0;
  }
}
.TitleStyle01--underline {
  text-decoration: underline;
  color: #111;
}
@media screen and (max-width:599px ) {
  .TitleStyle01--underline {
    text-decoration: none;
  }
}
@media screen and (max-width:599px ) {
  .TitleStyle01 {
    margin-top: 8px;
    padding: 3px 6px;
  }
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  /*  margin: 120px 0 100px;*/
  margin: 80px 0 100px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  color: #45371B;
  background-color: transparent;
  padding: 10px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 4px;
  /*
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
  */
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 8px 13px;
    margin: 4px;
  }
  .wp-pagenavi {
    margin: 64px 0 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wp-pagenavi a:hover {
  color: #fff;
  border-radius: 4px;
}

.wp-pagenavi span.current {
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  overflow-wrap: break-word;
  /* その上で、下記のいずれかを指定する。overflow-wrapと併せて指定しましょう */
  word-break: break-all;
  letter-spacing: 0.02em;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: normal;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 100%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #45371b;
  background-color: #FFFFFF;
  font-family: YakuHanJP, "M PLUS Rounded 1c", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
body.active {
  overflow: hidden;
}

body.hidden {
  overflow: hidden;
}

.fwb {
  font-weight: bold;
}

@media screen and (max-width:599px ) {
  .df {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.color-white {
  color: #fff;
}

.slide {
  opacity: 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: 1s;
  transition: 1s;
}
.slide.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.inline_B_Sp {
  display: inline-block !important;
}

.LinkStyle01 {
  text-decoration: underline !important;
  color: #0956bf !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.LinkStyle01:hover {
  opacity: 0.7;
}

.anker-point {
  opacity: 0;
  position: relative;
  top: 64px;
}
.anker-point#info {
  top: 180px;
}
@media screen and (max-width:1024px ) {
  .anker-point#info {
    top: 150px;
  }
}
.anker-point#info-submit {
  top: 4px;
}
@media screen and (max-width:599px ) {
  .anker-point#info-submit {
    top: 60px;
  }
}
.anker-point#entry-submit {
  top: 4px;
}
@media screen and (max-width:599px ) {
  .anker-point#entry-submit {
    top: 60px;
  }
}

.border-dashed {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px dashed #897b57;
}

.small-font {
  font-size: 1.6rem;
}

.splide__toggle {
  position: absolute;
  bottom: -29px;
  right: 12px;
  height: 18px;
  width: 18px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.splide__toggle::before {
  content: "";
  position: absolute;
  display: block;
  height: 150%;
  width: 150%;
  border: 2px solid #fff;
  border-radius: 9999px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__toggle__play, .splide__toggle__pause {
  fill: #fff;
  height: 75%;
  width: 75%;
}
ul.notice {
  display: table;
  width: 100%;
  margin: 0;
  padding-left: 0;
  margin-top: 8px;
}

ul.notice li {
  list-style: none;
  line-height: 1.6;
  font-size: 1.8rem;
}
@media screen and (max-width:599px ) {
  ul.notice li {
    font-size: 1.7rem;
  }
}

ul.notice li .notice__head {
  display: table-cell;
  vertical-align: top;
  white-space: nowrap;
  padding-right: 0.1em;
}
@media screen and (min-width: 1025px) {
  ul.notice li .notice__head--7pxPc {
    position: relative;
    top: 7px;
  }
}

ul.notice li .notice__text {
  display: table-cell;
  vertical-align: top;
}

/* -------------------------------------------------- */
/* block item Width */
.wid10Per {
  width: 10% !important;
}

.wid15Per {
  width: 15% !important;
}

.wid20Per {
  width: 20% !important;
}

.wid25Per {
  width: 25% !important;
}

.wid30Per {
  width: 30% !important;
}

.wid35Per {
  width: 35% !important;
}

.wid40Per {
  width: 40% !important;
}

.wid45Per {
  width: 45% !important;
}

.wid50Per {
  width: 50% !important;
}

.wid55Per {
  width: 55% !important;
}

.wid60Per {
  width: 60% !important;
}

.wid65Per {
  width: 65% !important;
}

.wid70Per {
  width: 70% !important;
}

.wid75Per {
  width: 75% !important;
}

.wid80Per {
  width: 80% !important;
}

.wid85Per {
  width: 85% !important;
}

.wid90Per {
  width: 90% !important;
}

.wid95Per {
  width: 95% !important;
}

.wid100Per {
  width: 100% !important;
}

.wid50 {
  width: 50px !important;
}

.wid100 {
  width: 100px !important;
}

.wid150 {
  width: 150px !important;
}

.wid200 {
  width: 200px !important;
}

.wid250 {
  width: 250px !important;
}

.wid300 {
  width: 300px !important;
}

.wid350 {
  width: 350px !important;
}

.wid400 {
  width: 400px !important;
}

.wid450 {
  width: 450px !important;
}

.wid500 {
  width: 500px !important;
}

.wid550 {
  width: 550px !important;
}

.wid600 {
  width: 600px !important;
}

.wid650 {
  width: 650px !important;
}

.wid700 {
  width: 700px !important;
}

.wid750 {
  width: 750px !important;
}

.wid800 {
  width: 800px !important;
}

.wid850 {
  width: 850px !important;
}

.wid900 {
  width: 900px !important;
}

.wid950 {
  width: 950px !important;
}

/* -------------------------------------------------- */
/* block item Margin */
/* - All margin */
.marA0 {
  margin: 0px !important;
}

.marA5 {
  margin: 5px !important;
}

.marA10 {
  margin: 10px !important;
}

.marA15 {
  margin: 15px !important;
}

.marA20 {
  margin: 20px !important;
}

.marA25 {
  margin: 25px !important;
}

.marA30 {
  margin: 30px !important;
}

.marA40 {
  margin: 40px !important;
}

.marA50 {
  margin: 50px !important;
}

.marA60 {
  margin: 60px !important;
}

.marA70 {
  margin: 70px !important;
}

.marA80 {
  margin: 80px !important;
}

.marA90 {
  margin: 90px !important;
}

/* - Top margin */
.marT0 {
  margin-top: 0px !important;
}

.marT5 {
  margin-top: 5px !important;
}

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

.marT15 {
  margin-top: 15px !important;
}

.marT20 {
  margin-top: 20px !important;
}

.marT25 {
  margin-top: 25px !important;
}

.marT30 {
  margin-top: 30px !important;
}

.marT40 {
  margin-top: 40px !important;
}

.marT50 {
  margin-top: 50px !important;
}

.marT60 {
  margin-top: 60px !important;
}

.marT70 {
  margin-top: 70px !important;
}

.marT80 {
  margin-top: 80px !important;
}

.marT90 {
  margin-top: 90px !important;
}

.marT120 {
  margin-top: 120px !important;
}

/* - Bottom margin */
.marB0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* - Left margin */
.marL0 {
  margin-left: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* - Right margin */
.marR0 {
  margin-right: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------------- */
/* block item Padding */
/* - All padding */
.padA0 {
  padding: 0px !important;
}

.padA5 {
  padding: 5px !important;
}

.padA10 {
  padding: 10px !important;
}

.padA15 {
  padding: 15px !important;
}

.padA20 {
  padding: 20px !important;
}

.padA25 {
  padding: 25px !important;
}

.padA30 {
  padding: 30px !important;
}

.padA40 {
  padding: 40px !important;
}

.padA50 {
  padding: 50px !important;
}

.padA60 {
  padding: 60px !important;
}

.padA70 {
  padding: 70px !important;
}

.padA80 {
  padding: 80px !important;
}

.padA90 {
  padding: 90px !important;
}

/* - Top padding */
.padT0 {
  padding-top: 0px !important;
}

.padT5 {
  padding-top: 5px !important;
}

.padT10 {
  padding-top: 10px !important;
}

.padT15 {
  padding-top: 15px !important;
}

.padT20 {
  padding-top: 20px !important;
}

.padT25 {
  padding-top: 25px !important;
}

.padT30 {
  padding-top: 30px !important;
}

.padT40 {
  padding-top: 40px !important;
}

.padT50 {
  padding-top: 50px !important;
}

.padT60 {
  padding-top: 60px !important;
}

.padT70 {
  padding-top: 70px !important;
}

.padT80 {
  padding-top: 80px !important;
}

.padT90 {
  padding-top: 90px !important;
}

/* - Bottom padding */
.padB0 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* - Left padding */
.padL0 {
  padding-left: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* - Right padding */
.padR0 {
  padding-right: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* - Font size */
.txt10px {
  font-size: 1rem !important;
}

.txt11px {
  font-size: 1.1rem !important;
}

.txt12px {
  font-size: 1.2rem !important;
}

.txt13px {
  font-size: 1.3rem !important;
}

.txt14px {
  font-size: 1.4rem !important;
}

.txt15px {
  font-size: 1.5rem !important;
}

.txt16px {
  font-size: 1.6rem !important;
}

.txt17px {
  font-size: 1.7rem !important;
}

.txt18px {
  font-size: 1.8rem !important;
}

.txt19px {
  font-size: 1.9rem !important;
}

.txt20px {
  font-size: 2rem !important;
}

.txt21px {
  font-size: 2.1rem !important;
}

.txt22px {
  font-size: 2.2rem !important;
}

.txt23px {
  font-size: 2.3rem !important;
}

.txt24px {
  font-size: 2.4rem !important;
}

.txt25px {
  font-size: 2.5rem !important;
}

.txt26px {
  font-size: 2.6rem !important;
}

/* -line-height */
.LH100 {
  line-height: 1 !important;
}

.LH110 {
  line-height: 1.1 !important;
}

.LH120 {
  line-height: 1.2 !important;
}

.LH130 {
  line-height: 1.3 !important;
}

.LH140 {
  line-height: 1.4 !important;
}

.LH150 {
  line-height: 1.5 !important;
}

.LH160 {
  line-height: 1.6 !important;
}

.LH170 {
  line-height: 1.7 !important;
}

.LH180 {
  line-height: 1.8 !important;
}

.LH190 {
  line-height: 1.9 !important;
}

.LH200 {
  line-height: 2 !important;
}

/* Float setting */
.flt-L {
  float: left !important;
}

.flt-R {
  float: right !important;
}

/* Align setting */
.ali-L {
  text-align: left !important;
}

.ali-C {
  text-align: center !important;
}

.ali-R {
  text-align: right !important;
}

@media print, screen and (min-width: 1025px) {
  /* -------------------------------------------------- */
  /* block item Width */
  .wid10Per_pc {
    width: 10% !important;
  }
  .wid15Per_pc {
    width: 15% !important;
  }
  .wid20Per_pc {
    width: 20% !important;
  }
  .wid25Per_pc {
    width: 25% !important;
  }
  .wid30Per_pc {
    width: 30% !important;
  }
  .wid35Per_pc {
    width: 35% !important;
  }
  .wid40Per_pc {
    width: 40% !important;
  }
  .wid45Per_pc {
    width: 45% !important;
  }
  .wid50Per_pc {
    width: 50% !important;
  }
  .wid55Per_pc {
    width: 55% !important;
  }
  .wid60Per_pc {
    width: 60% !important;
  }
  .wid65Per_pc {
    width: 65% !important;
  }
  .wid70Per_pc {
    width: 70% !important;
  }
  .wid75Per_pc {
    width: 75% !important;
  }
  .wid80Per_pc {
    width: 80% !important;
  }
  .wid85Per_pc {
    width: 85% !important;
  }
  .wid90Per_pc {
    width: 90% !important;
  }
  .wid95Per_pc {
    width: 95% !important;
  }
  .wid100Per_pc {
    width: 100% !important;
  }
  .wid50_pc {
    width: 50px !important;
  }
  .wid100_pc {
    width: 100px !important;
  }
  .wid150_pc {
    width: 150px !important;
  }
  .wid200_pc {
    width: 200px !important;
  }
  .wid250_pc {
    width: 250px !important;
  }
  .wid300_pc {
    width: 300px !important;
  }
  .wid350_pc {
    width: 350px !important;
  }
  .wid400_pc {
    width: 400px !important;
  }
  .wid450_pc {
    width: 450px !important;
  }
  .wid500_pc {
    width: 500px !important;
  }
  .wid550_pc {
    width: 550px !important;
  }
  .wid600_pc {
    width: 600px !important;
  }
  .wid650_pc {
    width: 650px !important;
  }
  .wid700_pc {
    width: 700px !important;
  }
  .wid750_pc {
    width: 750px !important;
  }
  .wid800_pc {
    width: 800px !important;
  }
  .wid850_pc {
    width: 850px !important;
  }
  .wid900_pc {
    width: 900px !important;
  }
  .wid950_pc {
    width: 950px !important;
  }
  /* -------------------------------------------------- */
  /* block item Margin */
  /* - All margin */
  .marA0_pc {
    margin: 0px !important;
  }
  .marA5_pc {
    margin: 5px !important;
  }
  .marA10_pc {
    margin: 10px !important;
  }
  .marA15_pc {
    margin: 15px !important;
  }
  .marA20_pc {
    margin: 20px !important;
  }
  .marA25_pc {
    margin: 25px !important;
  }
  .marA30_pc {
    margin: 30px !important;
  }
  .marA40_pc {
    margin: 40px !important;
  }
  .marA50_pc {
    margin: 50px !important;
  }
  .marA60_pc {
    margin: 60px !important;
  }
  .marA70_pc {
    margin: 70px !important;
  }
  .marA80_pc {
    margin: 80px !important;
  }
  .marA90_pc {
    margin: 90px !important;
  }
  /* - Top margin */
  .marT0_pc {
    margin-top: 0px !important;
  }
  .marT5_pc {
    margin-top: 5px !important;
  }
  .marT10_pc {
    margin-top: 10px !important;
  }
  .marT15_pc {
    margin-top: 15px !important;
  }
  .marT20_pc {
    margin-top: 20px !important;
  }
  .marT25_pc {
    margin-top: 25px !important;
  }
  .marT30_pc {
    margin-top: 30px !important;
  }
  .marT40_pc {
    margin-top: 40px !important;
  }
  .marT50_pc {
    margin-top: 50px !important;
  }
  .marT60_pc {
    margin-top: 60px !important;
  }
  .marT70_pc {
    margin-top: 70px !important;
  }
  .marT80_pc {
    margin-top: 80px !important;
  }
  .marT90_pc {
    margin-top: 90px !important;
  }
  .marT120_pc {
    margin-top: 120px !important;
  }
  /* - Bottom margin */
  .marB0_pc {
    margin-bottom: 0px !important;
  }
  .marB5_pc {
    margin-bottom: 5px !important;
  }
  .marB10_pc {
    margin-bottom: 10px !important;
  }
  .marB15_pc {
    margin-bottom: 15px !important;
  }
  .marB20_pc {
    margin-bottom: 20px !important;
  }
  .marB25_pc {
    margin-bottom: 25px !important;
  }
  .marB30_pc {
    margin-bottom: 30px !important;
  }
  .marB40_pc {
    margin-bottom: 40px !important;
  }
  .marB50_pc {
    margin-bottom: 50px !important;
  }
  .marB60_pc {
    margin-bottom: 60px !important;
  }
  .marB70_pc {
    margin-bottom: 70px !important;
  }
  .marB80_pc {
    margin-bottom: 80px !important;
  }
  .marB90_pc {
    margin-bottom: 90px !important;
  }
  /* - Left margin */
  .marL0_pc {
    margin-left: 0px !important;
  }
  .marL5_pc {
    margin-left: 5px !important;
  }
  .marL10_pc {
    margin-left: 10px !important;
  }
  .marL15_pc {
    margin-left: 15px !important;
  }
  .marL20_pc {
    margin-left: 20px !important;
  }
  .marL25_pc {
    margin-left: 25px !important;
  }
  .marL30_pc {
    margin-left: 30px !important;
  }
  .marL40_pc {
    margin-left: 40px !important;
  }
  .marL50_pc {
    margin-left: 50px !important;
  }
  .marL60_pc {
    margin-left: 60px !important;
  }
  .marL70_pc {
    margin-left: 70px !important;
  }
  .marL80_pc {
    margin-left: 80px !important;
  }
  .marL90_pc {
    margin-left: 90px !important;
  }
  /* - Right margin */
  .marR0_pc {
    margin-right: 0px !important;
  }
  .marR5_pc {
    margin-right: 5px !important;
  }
  .marR10_pc {
    margin-right: 10px !important;
  }
  .marR15_pc {
    margin-right: 15px !important;
  }
  .marR20_pc {
    margin-right: 20px !important;
  }
  .marR25_pc {
    margin-right: 25px !important;
  }
  .marR30_pc {
    margin-right: 30px !important;
  }
  .marR40_pc {
    margin-right: 40px !important;
  }
  .marR50_pc {
    margin-right: 50px !important;
  }
  .marR60_pc {
    margin-right: 60px !important;
  }
  .marR70_pc {
    margin-right: 70px !important;
  }
  .marR80_pc {
    margin-right: 80px !important;
  }
  .marR90_pc {
    margin-right: 90px !important;
  }
  /* -------------------------------------------------- */
  /* - All padding */
  .padA0_pc {
    padding: 0px !important;
  }
  .padA5_pc {
    padding: 5px !important;
  }
  .padA10_pc {
    padding: 10px !important;
  }
  .padA15_pc {
    padding: 15px !important;
  }
  .padA20_pc {
    padding: 20px !important;
  }
  .padA25_pc {
    padding: 25px !important;
  }
  .padA30_pc {
    padding: 30px !important;
  }
  .padA40_pc {
    padding: 40px !important;
  }
  .padA50_pc {
    padding: 50px !important;
  }
  .padA60_pc {
    padding: 60px !important;
  }
  .padA70_pc {
    padding: 70px !important;
  }
  .padA80_pc {
    padding: 80px !important;
  }
  .padA90_pc {
    padding: 90px !important;
  }
  /* - Top padding */
  .padT0_pc {
    padding-top: 0px !important;
  }
  .padT5_pc {
    padding-top: 5px !important;
  }
  .padT10_pc {
    padding-top: 10px !important;
  }
  .padT15_pc {
    padding-top: 15px !important;
  }
  .padT20_pc {
    padding-top: 20px !important;
  }
  .padT25_pc {
    padding-top: 25px !important;
  }
  .padT30_pc {
    padding-top: 30px !important;
  }
  .padT40_pc {
    padding-top: 40px !important;
  }
  .padT50_pc {
    padding-top: 50px !important;
  }
  .padT60_pc {
    padding-top: 60px !important;
  }
  .padT70_pc {
    padding-top: 70px !important;
  }
  .padT80_pc {
    padding-top: 80px !important;
  }
  .padT90_pc {
    padding-top: 90px !important;
  }
  /* - Bottom padding */
  .padB0_pc {
    padding-bottom: 0px !important;
  }
  .padB5_pc {
    padding-bottom: 5px !important;
  }
  .padB10_pc {
    padding-bottom: 10px !important;
  }
  .padB15_pc {
    padding-bottom: 15px !important;
  }
  .padB20_pc {
    padding-bottom: 20px !important;
  }
  .padB25_pc {
    padding-bottom: 25px !important;
  }
  .padB30_pc {
    padding-bottom: 30px !important;
  }
  .padB40_pc {
    padding-bottom: 40px !important;
  }
  .padB50_pc {
    padding-bottom: 50px !important;
  }
  .padB60_pc {
    padding-bottom: 60px !important;
  }
  .padB70_pc {
    padding-bottom: 70px !important;
  }
  .padB80_pc {
    padding-bottom: 80px !important;
  }
  .padB90_pc {
    padding-bottom: 90px !important;
  }
  /* - Left padding */
  .padL0_pc {
    padding-left: 0px !important;
  }
  .padL5_pc {
    padding-left: 5px !important;
  }
  .padL10_pc {
    padding-left: 10px !important;
  }
  .padL15_pc {
    padding-left: 15px !important;
  }
  .padL20_pc {
    padding-left: 20px !important;
  }
  .padL25_pc {
    padding-left: 25px !important;
  }
  .padL30_pc {
    padding-left: 30px !important;
  }
  .padL40_pc {
    padding-left: 40px !important;
  }
  .padL50_pc {
    padding-left: 50px !important;
  }
  .padL60_pc {
    padding-left: 60px !important;
  }
  .padL70_pc {
    padding-left: 70px !important;
  }
  .padL80_pc {
    padding-left: 80px !important;
  }
  .padL90_pc {
    padding-left: 90px !important;
  }
  /* - Right padding */
  .padR0_pc {
    padding-right: 0px !important;
  }
  .padR5_pc {
    padding-right: 5px !important;
  }
  .padR10_pc {
    padding-right: 10px !important;
  }
  .padR15_pc {
    padding-right: 15px !important;
  }
  .padR20_pc {
    padding-right: 20px !important;
  }
  .padR25_pc {
    padding-right: 25px !important;
  }
  .padR30_pc {
    padding-right: 30px !important;
  }
  .padR40_pc {
    padding-right: 40px !important;
  }
  .padR50_pc {
    padding-right: 50px !important;
  }
  .padR60_pc {
    padding-right: 60px !important;
  }
  .padR70_pc {
    padding-right: 70px !important;
  }
  .padR80_pc {
    padding-right: 80px !important;
  }
  .padR90_pc {
    padding-right: 90px !important;
  }
  /* - Font size */
  .txt10px_pc {
    font-size: 1rem !important;
  }
  .txt11px_pc {
    font-size: 1.1rem !important;
  }
  .txt12px_pc {
    font-size: 1.2rem !important;
  }
  .txt13px_pc {
    font-size: 1.3rem !important;
  }
  .txt14px_pc {
    font-size: 1.4rem !important;
  }
  .txt15px_pc {
    font-size: 1.5rem !important;
  }
  .txt16px_pc {
    font-size: 1.6rem !important;
  }
  .txt17px_pc {
    font-size: 1.7rem !important;
  }
  .txt18px_pc {
    font-size: 1.8rem !important;
  }
  .txt19px_pc {
    font-size: 1.9rem !important;
  }
  .txt20px_pc {
    font-size: 2rem !important;
  }
  .txt21px_pc {
    font-size: 2.1rem !important;
  }
  .txt22px_pc {
    font-size: 2.2rem !important;
  }
  .txt23px_pc {
    font-size: 2.3rem !important;
  }
  .txt24px_pc {
    font-size: 2.4rem !important;
  }
  .txt25px_pc {
    font-size: 2.5rem !important;
  }
  .txt26px_pc {
    font-size: 2.6rem !important;
  }
  /* Float setting */
  .flt-L_pc {
    float: left !important;
  }
  .flt-R_pc {
    float: right !important;
  }
  /* Align setting */
  .ali-L_pc {
    text-align: left !important;
  }
  .ali-C_pc {
    text-align: center !important;
  }
  .ali-R_pc {
    text-align: right !important;
  }
  .SpNodisplay {
    display: inherit !important;
  }
  .PcNodisplay {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  /* -------------------------------------------------- */
  /* block item Width */
  .wid10Per_sp {
    width: 10% !important;
  }
  .wid15Per_sp {
    width: 15% !important;
  }
  .wid20Per_sp {
    width: 20% !important;
  }
  .wid25Per_sp {
    width: 25% !important;
  }
  .wid30Per_sp {
    width: 30% !important;
  }
  .wid35Per_sp {
    width: 35% !important;
  }
  .wid40Per_sp {
    width: 40% !important;
  }
  .wid45Per_sp {
    width: 45% !important;
  }
  .wid50Per_sp {
    width: 50% !important;
  }
  .wid55Per_sp {
    width: 55% !important;
  }
  .wid60Per_sp {
    width: 60% !important;
  }
  .wid65Per_sp {
    width: 65% !important;
  }
  .wid70Per_sp {
    width: 70% !important;
  }
  .wid75Per_sp {
    width: 75% !important;
  }
  .wid80Per_sp {
    width: 80% !important;
  }
  .wid85Per_sp {
    width: 85% !important;
  }
  .wid90Per_sp {
    width: 90% !important;
  }
  .wid95Per_sp {
    width: 95% !important;
  }
  .wid100Per_sp {
    width: 100% !important;
  }
  .wid50_sp {
    width: 50px !important;
  }
  .wid100_sp {
    width: 100px !important;
  }
  .wid150_sp {
    width: 150px !important;
  }
  .wid200_sp {
    width: 200px !important;
  }
  .wid250_sp {
    width: 250px !important;
  }
  .wid300_sp {
    width: 300px !important;
  }
  .wid350_sp {
    width: 350px !important;
  }
  .wid400_sp {
    width: 400px !important;
  }
  .wid450_sp {
    width: 450px !important;
  }
  .wid500_sp {
    width: 500px !important;
  }
  .wid550_sp {
    width: 550px !important;
  }
  .wid600_sp {
    width: 600px !important;
  }
  .wid650_sp {
    width: 650px !important;
  }
  .wid700_sp {
    width: 700px !important;
  }
  .wid750_sp {
    width: 750px !important;
  }
  .wid800_sp {
    width: 800px !important;
  }
  .wid850_sp {
    width: 850px !important;
  }
  .wid900_sp {
    width: 900px !important;
  }
  .wid950_sp {
    width: 950px !important;
  }
  /* -------------------------------------------------- */
  /* block item Margin */
  /* - All margin */
  .marA0_sp {
    margin: 0px !important;
  }
  .marA5_sp {
    margin: 5px !important;
  }
  .marA10_sp {
    margin: 10px !important;
  }
  .marA15_sp {
    margin: 15px !important;
  }
  .marA20_sp {
    margin: 20px !important;
  }
  .marA25_sp {
    margin: 25px !important;
  }
  .marA30_sp {
    margin: 30px !important;
  }
  .marA40_sp {
    margin: 40px !important;
  }
  .marA50_sp {
    margin: 50px !important;
  }
  .marA60_sp {
    margin: 60px !important;
  }
  .marA70_sp {
    margin: 70px !important;
  }
  .marA80_sp {
    margin: 80px !important;
  }
  .marA90_sp {
    margin: 90px !important;
  }
  /* - Top margin */
  .marT0_sp {
    margin-top: 0px !important;
  }
  .marT5_sp {
    margin-top: 5px !important;
  }
  .marT10_sp {
    margin-top: 10px !important;
  }
  .marT15_sp {
    margin-top: 15px !important;
  }
  .marT20_sp {
    margin-top: 20px !important;
  }
  .marT25_sp {
    margin-top: 25px !important;
  }
  .marT30_sp {
    margin-top: 30px !important;
  }
  .marT40_sp {
    margin-top: 40px !important;
  }
  .marT50_sp {
    margin-top: 50px !important;
  }
  .marT60_sp {
    margin-top: 60px !important;
  }
  .marT70_sp {
    margin-top: 70px !important;
  }
  .marT80_sp {
    margin-top: 80px !important;
  }
  .marT90_sp {
    margin-top: 90px !important;
  }
  .marT120_sp {
    margin-top: 120px !important;
  }
  /* - Bottom margin */
  .marB0_sp {
    margin-bottom: 0px !important;
  }
  .marB5_sp {
    margin-bottom: 5px !important;
  }
  .marB10_sp {
    margin-bottom: 10px !important;
  }
  .marB15_sp {
    margin-bottom: 15px !important;
  }
  .marB20_sp {
    margin-bottom: 20px !important;
  }
  .marB25_sp {
    margin-bottom: 25px !important;
  }
  .marB30_sp {
    margin-bottom: 30px !important;
  }
  .marB40_sp {
    margin-bottom: 40px !important;
  }
  .marB50_sp {
    margin-bottom: 50px !important;
  }
  .marB60_sp {
    margin-bottom: 60px !important;
  }
  .marB70_sp {
    margin-bottom: 70px !important;
  }
  .marB80_sp {
    margin-bottom: 80px !important;
  }
  .marB90_sp {
    margin-bottom: 90px !important;
  }
  /* - Left margin */
  .marL0_sp {
    margin-left: 0px !important;
  }
  .marL5_sp {
    margin-left: 5px !important;
  }
  .marL10_sp {
    margin-left: 10px !important;
  }
  .marL15_sp {
    margin-left: 15px !important;
  }
  .marL20_sp {
    margin-left: 20px !important;
  }
  .marL25_sp {
    margin-left: 25px !important;
  }
  .marL30_sp {
    margin-left: 30px !important;
  }
  .marL40_sp {
    margin-left: 40px !important;
  }
  .marL50_sp {
    margin-left: 50px !important;
  }
  .marL60_sp {
    margin-left: 60px !important;
  }
  .marL70_sp {
    margin-left: 70px !important;
  }
  .marL80_sp {
    margin-left: 80px !important;
  }
  .marL90_sp {
    margin-left: 90px !important;
  }
  /* - Right margin */
  .marR0_sp {
    margin-right: 0px !important;
  }
  .marR5_sp {
    margin-right: 5px !important;
  }
  .marR10_sp {
    margin-right: 10px !important;
  }
  .marR15_sp {
    margin-right: 15px !important;
  }
  .marR20_sp {
    margin-right: 20px !important;
  }
  .marR25_sp {
    margin-right: 25px !important;
  }
  .marR30_sp {
    margin-right: 30px !important;
  }
  .marR40_sp {
    margin-right: 40px !important;
  }
  .marR50_sp {
    margin-right: 50px !important;
  }
  .marR60_sp {
    margin-right: 60px !important;
  }
  .marR70_sp {
    margin-right: 70px !important;
  }
  .marR80_sp {
    margin-right: 80px !important;
  }
  .marR90_sp {
    margin-right: 90px !important;
  }
  /* -------------------------------------------------- */
  /* - All padding */
  .padA0_sp {
    padding: 0px !important;
  }
  .padA5_sp {
    padding: 5px !important;
  }
  .padA10_sp {
    padding: 10px !important;
  }
  .padA15_sp {
    padding: 15px !important;
  }
  .padA20_sp {
    padding: 20px !important;
  }
  .padA25_sp {
    padding: 25px !important;
  }
  .padA30_sp {
    padding: 30px !important;
  }
  .padA40_sp {
    padding: 40px !important;
  }
  .padA50_sp {
    padding: 50px !important;
  }
  .padA60_sp {
    padding: 60px !important;
  }
  .padA70_sp {
    padding: 70px !important;
  }
  .padA80_sp {
    padding: 80px !important;
  }
  .padA90_sp {
    padding: 90px !important;
  }
  /* - Top padding */
  .padT0_sp {
    padding-top: 0px !important;
  }
  .padT5_sp {
    padding-top: 5px !important;
  }
  .padT10_sp {
    padding-top: 10px !important;
  }
  .padT15_sp {
    padding-top: 15px !important;
  }
  .padT20_sp {
    padding-top: 20px !important;
  }
  .padT25_sp {
    padding-top: 25px !important;
  }
  .padT30_sp {
    padding-top: 30px !important;
  }
  .padT40_sp {
    padding-top: 40px !important;
  }
  .padT50_sp {
    padding-top: 50px !important;
  }
  .padT60_sp {
    padding-top: 60px !important;
  }
  .padT70_sp {
    padding-top: 70px !important;
  }
  .padT80_sp {
    padding-top: 80px !important;
  }
  .padT90_sp {
    padding-top: 90px !important;
  }
  /* - Bottom padding */
  .padB0_sp {
    padding-bottom: 0px !important;
  }
  .padB5_sp {
    padding-bottom: 5px !important;
  }
  .padB10_sp {
    padding-bottom: 10px !important;
  }
  .padB15_sp {
    padding-bottom: 15px !important;
  }
  .padB20_sp {
    padding-bottom: 20px !important;
  }
  .padB25_sp {
    padding-bottom: 25px !important;
  }
  .padB30_sp {
    padding-bottom: 30px !important;
  }
  .padB40_sp {
    padding-bottom: 40px !important;
  }
  .padB50_sp {
    padding-bottom: 50px !important;
  }
  .padB60_sp {
    padding-bottom: 60px !important;
  }
  .padB70_sp {
    padding-bottom: 70px !important;
  }
  .padB80_sp {
    padding-bottom: 80px !important;
  }
  .padB90_sp {
    padding-bottom: 90px !important;
  }
  /* - Left padding */
  .padL0_sp {
    padding-left: 0px !important;
  }
  .padL5_sp {
    padding-left: 5px !important;
  }
  .padL10_sp {
    padding-left: 10px !important;
  }
  .padL15_sp {
    padding-left: 15px !important;
  }
  .padL20_sp {
    padding-left: 20px !important;
  }
  .padL25_sp {
    padding-left: 25px !important;
  }
  .padL30_sp {
    padding-left: 30px !important;
  }
  .padL40_sp {
    padding-left: 40px !important;
  }
  .padL50_sp {
    padding-left: 50px !important;
  }
  .padL60_sp {
    padding-left: 60px !important;
  }
  .padL70_sp {
    padding-left: 70px !important;
  }
  .padL80_sp {
    padding-left: 80px !important;
  }
  .padL90_sp {
    padding-left: 90px !important;
  }
  /* - Right padding */
  .padR0_sp {
    padding-right: 0px !important;
  }
  .padR5_sp {
    padding-right: 5px !important;
  }
  .padR10_sp {
    padding-right: 10px !important;
  }
  .padR15_sp {
    padding-right: 15px !important;
  }
  .padR20_sp {
    padding-right: 20px !important;
  }
  .padR25_sp {
    padding-right: 25px !important;
  }
  .padR30_sp {
    padding-right: 30px !important;
  }
  .padR40_sp {
    padding-right: 40px !important;
  }
  .padR50_sp {
    padding-right: 50px !important;
  }
  .padR60_sp {
    padding-right: 60px !important;
  }
  .padR70_sp {
    padding-right: 70px !important;
  }
  .padR80_sp {
    padding-right: 80px !important;
  }
  .padR90_sp {
    padding-right: 90px !important;
  }
  /* - Font size */
  .txt10px_sp {
    font-size: 1rem !important;
  }
  .txt11px_sp {
    font-size: 1.1rem !important;
  }
  .txt12px_sp {
    font-size: 1.2rem !important;
  }
  .txt13px_sp {
    font-size: 1.3rem !important;
  }
  .txt14px_sp {
    font-size: 1.4rem !important;
  }
  .txt15px_sp {
    font-size: 1.5rem !important;
  }
  .txt16px_sp {
    font-size: 1.6rem !important;
  }
  .txt17px_sp {
    font-size: 1.7rem !important;
  }
  .txt18px_sp {
    font-size: 1.8rem !important;
  }
  .txt19px_sp {
    font-size: 1.9rem !important;
  }
  .txt20px_sp {
    font-size: 2rem !important;
  }
  .txt21px_sp {
    font-size: 2.1rem !important;
  }
  .txt22px_sp {
    font-size: 2.2rem !important;
  }
  .txt23px_sp {
    font-size: 2.3rem !important;
  }
  .txt24px_sp {
    font-size: 2.4rem !important;
  }
  .txt25px_sp {
    font-size: 2.5rem !important;
  }
  .txt26px_sp {
    font-size: 2.6rem !important;
  }
  /* Float setting */
  .flt-L_sp {
    float: left !important;
  }
  .flt-R_sp {
    float: right !important;
  }
  /* Align setting */
  .ali-L_sp {
    text-align: left !important;
  }
  .ali-C_sp {
    text-align: center !important;
  }
  .ali-R_sp {
    text-align: right !important;
  }
  .SpNodisplay {
    display: none !important;
  }
  .PcNodisplay {
    display: inherit !important;
  }
}
.Tabdisplay {
  display: none !important;
}
@media screen and (max-width:1024px ) {
  .Tabdisplay {
    display: block !important;
  }
}

.TabNodisplay {
  display: block;
}
@media screen and (max-width:1024px ) {
  .TabNodisplay {
    display: none !important;
  }
}

.Spdisplay {
  display: none;
}
@media screen and (max-width:599px ) {
  .Spdisplay {
    display: block !important;
  }
}

.SpNodisplayOnly {
  display: block;
}
@media screen and (max-width:599px ) {
  .SpNodisplayOnly {
    display: none !important;
  }
}

.Spdisplay--inline-b {
  display: none;
}
@media screen and (max-width:599px ) {
  .Spdisplay--inline-b {
    display: inline-block !important;
  }
}

@media screen and (min-width: 768px) {
  .for_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for_pc {
    display: none;
  }
}
.bgt {
  background-repeat: no-repeat;
  background-position: center top;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.white_bg {
  width: 100% !important;
  background-color: #ffffff;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.l-1550 {
  width: 100%;
  max-width: 1550px;
  margin-right: auto;
  margin-left: auto;
}

.all_box,
.l-1254 {
  width: 100%;
  max-width: 1254px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px;
}

.all_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 12.1739130435%;
}

.layout_1 .all_box {
  display: block;
}

.max-660 {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.max-750 {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1254px) {
  .all_box,
  .l-1254 {
    padding-right: 2.5518341308%;
    padding-left: 2.5518341308%;
  }
}
@media screen and (max-width: 920px) {
  .all_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .sp-100 {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .all_box {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
}
/*
 * header
 * -------------------------------------------------------------------
 */
body {
  position: relative;
  z-index: 2000;
}

body.layout_no_menu {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 48px;
  }
  body.layout_no_menu {
    padding-top: 0;
  }
}
/* Header ============================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 3000;
  border-bottom: 1px rgb(218, 218, 218) solid;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif !important;
}

@media print {
  header {
    position: absolute;
  }
}
._csstrans header {
  /* transition: background-color .4s cubic-bezier(.165, .84, .44, 1);*/
}

header:hover {
  /* background-color: rgba(255,255,255,1);*/
}

.layout_no_menu header {
  position: relative;
  border-bottom: 1px #ccc solid;
}

.header_inner {
  position: relative;
  width: 100%;
  max-width: 1210px;
  height: 100px;
  margin: 0 auto;
  padding: 0 10px;
}

.header_inner .logo {
  position: absolute;
  top: 19px;
  left: 10px;
}

.header_inner .logo .logo_i {
  display: block;
  position: relative;
  height: 63px;
  padding-top: 20px;
  padding-left: 103px;
  font-size: 19.55px;
  line-height: 1;
  font-weight: 700;
}

.lang_en .header_inner .logo .logo_i {
  padding-top: 6px;
}

.header_inner .logo .logo_i::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 64px;
  background-image: url(../img/dydo.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  content: "";
}

.lang_en .header_inner .logo .logo_i::before {
  height: 32px;
  background-image: url(../img/logo_dydo.svg);
}

@media screen and (max-width: 980px) {
  .header_inner .logo .logo_i {
    padding-left: calc(5.1887vw + 52.1509px); /* 103 -> 92 */
    font-size: calc(2.1462vw - 1.483px); /* 19.55 -> 15 */
  }
}
@media screen and (max-width: 767px) {
  .header_inner {
    height: 48px;
    padding: 0;
  }
  .header_inner._open {
    height: 100vh;
  }
  .header_inner .logo {
    top: 10px;
  }
  .header_inner .logo .logo_i {
    padding-top: 10px;
    padding-left: 48px;
    font-size: 12px;
    height: 32px;
  }
  .lang_en .header_inner .logo .logo_i {
    padding-left: 56px;
    font-size: 14px;
  }
  .header_inner .logo .logo_i::before {
    width: 42px;
    height: 32px;
  }
  .lang_en .header_inner .logo .logo_i::before {
    width: 50px;
    top: 4px;
  }
  .header_inner .header_navigation-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: rgb(230, 230, 230);
  }
  .header_inner .header_navigation-btn::after {
    display: block;
    text-align: center;
    font-size: 10px;
    padding-top: 1px;
    font-weight: 700;
    content: "MENU";
  }
  .lang_en .header_inner._open .header_navigation-btn::after {
    content: "CLOSE";
  }
  .header_inner._open .header_navigation-btn::after {
    padding-top: 0;
    font-weight: 400;
    content: "閉じる";
  }
  .header_inner._open._close .header_navigation-btn::after {
    padding-top: 1px;
    font-weight: 700;
    content: "MENU";
  }
  .header_inner .header_navigation-btn-icon {
    position: relative;
    display: block;
    height: 30px;
  }
  .header_inner .header_navigation-btn-icon-top,
  .header_inner .header_navigation-btn-icon-middle,
  .header_inner .header_navigation-btn-icon-bottom {
    position: absolute;
    left: 50%;
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgb(89, 87, 87);
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header_inner._open .header_navigation-btn-icon-top,
  .header_inner._open .header_navigation-btn-icon-middle,
  .header_inner._open .header_navigation-btn-icon-bottom {
    background-color: rgba(89, 87, 87, 0);
  }
  .header_inner._open._close .header_navigation-btn-icon-top,
  .header_inner._open._close .header_navigation-btn-icon-middle,
  .header_inner._open._close .header_navigation-btn-icon-bottom {
    background-color: rgb(89, 87, 87);
  }
  .header_inner .header_navigation-btn-icon-top {
    top: 9px;
  }
  .header_inner._open .header_navigation-btn-icon-top {
    top: 18px;
  }
  .header_inner._open._close .header_navigation-btn-icon-top {
    top: 9px;
  }
  .header_inner .header_navigation-btn-icon-middle {
    top: 18px;
  }
  .header_inner .header_navigation-btn-icon-middle::before,
  .header_inner .header_navigation-btn-icon-middle::after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgba(89, 87, 87, 0);
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
  }
  .header_inner._open .header_navigation-btn-icon-middle::before,
  .header_inner._open .header_navigation-btn-icon-middle::after {
    background-color: rgb(89, 87, 87);
  }
  .header_inner._open._close .header_navigation-btn-icon-middle::before,
  .header_inner._open._close .header_navigation-btn-icon-middle::after {
    background-color: rgba(89, 87, 87, 0);
  }
  .header_inner._open .header_navigation-btn-icon-middle::before {
    -webkit-transform: translate(-50%, 0) rotate(-225deg);
            transform: translate(-50%, 0) rotate(-225deg);
  }
  .header_inner._open._close .header_navigation-btn-icon-middle::before {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .header_inner._open .header_navigation-btn-icon-middle::after {
    -webkit-transform: translate(-50%, 0) rotate(225deg);
            transform: translate(-50%, 0) rotate(225deg);
  }
  .header_inner._open._close .header_navigation-btn-icon-middle::after {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .header_inner .header_navigation-btn-icon-bottom {
    top: 27px;
  }
  .header_inner._open .header_navigation-btn-icon-bottom {
    top: 18px;
  }
  .header_inner._open._close .header_navigation-btn-icon-bottom {
    top: 27px;
  }
}
/* --- main_navigation --- */
.header_inner .main_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 680px;
  overflow: hidden;
}

.lang_en .header_inner .main_navigation {
  width: 660px;
}

.header_inner .main_navigation > li {
  position: relative;
  margin-right: 36px;
}

.lang_en .header_inner .main_navigation > li {
  margin-right: 20px;
}

.header_inner .main_navigation > li:last-child {
  margin-right: 0;
}

.header_inner .main_navigation > li > a {
  position: relative;
  display: block;
  height: 43px;
  padding-top: 15px;
  padding-right: 20px;
  padding-left: 8px;
  font-size: 17.6px;
  line-height: 1;
  font-weight: 700;
}

._csstrans .header_inner .main_navigation > li > a {
  -webkit-transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header_inner .main_navigation > li > a:hover {
  color: rgb(208, 18, 27);
}

.header_inner .main_navigation > li > a::before {
  position: absolute;
  display: block;
  right: 0;
  top: calc(50% + 3px);
  width: 12.15px;
  height: 9.44px;
  background-image: url(../img/arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  content: "";
}

.header_inner .main_navigation > li > a:hover::before {
  background-image: url(../img/arrow_bottom_r.svg);
}

.header_inner .main_navigation .menu_box {
  display: none;
}

@media screen and (max-width: 980px) {
  .header_inner .main_navigation > li {
    margin-right: calc(14.1509vw - 92.6792px); /* 46 -> 16 */
  }
  .header_inner .main_navigation > li > a {
    font-size: calc(1.2264vw + 5.5811px); /* 17.6 -> 15 */
  }
}
@media screen and (max-width: 767px) {
  .header_inner .main_navigation {
    display: none;
  }
  .header_inner._open .main_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: auto;
    top: 140px;
    right: 0;
    width: 100%;
    padding-top: 16px;
    background-color: rgb(230, 230, 230);
  }
  .header_inner .main_navigation > li {
    margin-right: 0;
    border-bottom: 1px rgb(165, 163, 163) solid;
  }
  .header_inner .main_navigation > li:first-child {
    border-top: 1px rgb(165, 163, 163) solid;
  }
  .lang_en .header_inner .main_navigation > li {
    margin-right: 0;
  }
  /* 241003 */
  .header_inner .main_navigation > li:last-child {
    border-bottom: none;
  }
  .lang_en .header_inner .main_navigation > li:last-child {
    margin-right: 0;
    border-bottom: 1px rgb(165, 163, 163) solid;
  }
  .header_inner .main_navigation > li:last-child > div a {
    display: block;
    width: 80%;
    border: 1px solid #333;
    padding: 5px;
    margin: 20px auto;
    font-weight: 700;
    text-align: center;
  }
  .header_inner .main_navigation > li > a {
    height: 52px;
    padding-left: 24px;
    font-size: 16px;
  }
  .header_inner .main_navigation > li a::before {
    right: 20px;
  }
  .header_inner .main_navigation > li.nav-41 a::before {
    -webkit-transform: translate3d(0, -50%, 0) rotate(-90deg);
            transform: translate3d(0, -50%, 0) rotate(-90deg);
  }
  .header_inner .main_navigation > li > a._open::before {
    -webkit-transform: rotate(180deg) translate3d(0, 50%, 0);
            transform: rotate(180deg) translate3d(0, 50%, 0);
  }
  /* SP lower menu */
  .header_inner .main_navigation .menu_box {
    display: block;
    position: relative;
  }
  .header_inner .main_navigation .menu_box .btn_sp_lower_menu {
    position: absolute;
    top: -52px;
    right: 0;
    width: 102px;
    height: 52px;
  }
  .header_inner .main_navigation .nav-41 .menu_box .btn_sp_lower_menu {
    display: none;
  }
  .header_inner .main_navigation .menu_box .sp_lower_menu {
    display: block;
  }
  .header_inner .main_navigation .menu_box .sp_lower_menu._close {
    display: none;
  }
  .header_inner .main_navigation .sp_lower_menu li {
    border-top: 1px rgb(165, 163, 163) solid;
  }
  .main_navigation .sp_lower_menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    height: 48px;
    padding-right: 32px;
    padding-left: 30px;
  }
  .main_navigation .sp_lower_menu a::after {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 9px;
    height: 12px;
    background-image: url(../img/arrow_right_g.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    content: "";
  }
  .main_navigation .sp_lower_menu .btn_toggle a::after {
    display: none;
  }
  .main_navigation .sp_lower_menu a > div {
    line-height: 1.2;
  }
  .main_navigation .sp_lower_menu {
    font-size: 16px;
  }
  .main_navigation .sp_lower_menu > li > a {
    height: 40px;
  }
  .main_navigation .sp_lower_menu .menu_grp .title_pp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    height: 40px;
    padding-right: 32px;
    padding-left: 30px;
    font-weight: 700;
    font-size: 16px;
  }
  .main_navigation .sp_lower_menu .menu_grp_c > .btn_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    height: 40px;
    height: auto;
    padding-right: 42px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
  }
  .main_navigation .sp_lower_menu .menu_grp_c > .btn_toggle.row2 {
    /* height: 60px; */
  }
  .main_navigation .sp_lower_menu .menu_grp_c > .btn_toggle .btn_toggle_act {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 100%;
  }
  .main_navigation .sp_lower_menu .menu_grp_c > .btn_toggle .btn_toggle_act::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(255, 192, 0);
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    content: "＋";
  }
  .main_navigation .sp_lower_menu .menu_grp_c._open {
    /* background-color: rgb(218,218,218); */
  }
  .main_navigation .sp_lower_menu .menu_grp_c._open > .btn_toggle {
    /* background-color: rgb(218,218,218); */
  }
  .main_navigation .sp_lower_menu .menu_grp_c._open > .btn_toggle .btn_toggle_act::after {
    content: "－";
  }
  .main_navigation .sp_lower_menu .menu_grp_c > li:not(:first-of-type) {
    display: block;
  }
  .main_navigation .sp_lower_menu .menu_grp_c._close > li:not(:first-of-type) {
    display: none;
  }
  .main_navigation .sp_lower_menu .menu_grp_c a {
    padding-left: 46px;
    font-size: 14px;
  }
  .main_navigation .sp_lower_menu .menu_grp_c .btn_toggle a {
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 30px;
    font-size: 16px;
  }
  .main_navigation .sp_lower_menu .menu_grp > .menu_grp_c > .btn_toggle {
    /* padding-left: 38px; */
  }
  .main_navigation .sp_lower_menu .menu_grp_d {
    display: none;
  }
  .main_navigation .sp_lower_menu .menu_grp_d > li > a {
    font-size: 13px;
    padding-left: 54px;
  }
}
/* --- sub_navigation --- */
.header_inner .sub_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 13px;
  right: 10px;
  width: 424px;
  height: 30px;
  /* overflow: hidden */
}

.header_inner .sub_navigation li {
  position: relative;
  font-size: 12px;
  line-height: 2.2;
}

.header_inner .sub_navigation li.btn11 {
  margin-right: 12px;
  padding-top: 1px;
}

.header_inner .sub_navigation li.btn11::after {
  position: absolute;
  right: -7px;
  top: 5px;
  width: 1px;
  height: 17px;
  background-color: rgb(189, 189, 189);
  content: "";
}

.header_inner .sub_navigation li.btn12 {
  margin-right: 10px;
  padding-top: 1px;
}

.header_inner .sub_navigation li.btn13 {
  margin-right: 10px;
}

/* 241003追加 */
.header_inner .sub_navigation li.btn110 {
  font-size: 10px;
  margin-right: 10px;
  padding-top: 1px;
}

.header_inner .sub_navigation li.btn110 a {
  border: 1px solid rgb(255, 245, 221);
  background-color: rgb(255, 245, 221);
  border-radius: 3px;
  padding: 0px 3px;
}

.header_inner .sub_navigation li a {
  display: block;
}

.header_inner .sub_navigation li.btn11 a:hover,
.header_inner .sub_navigation li.btn12 a:hover {
  text-decoration: underline;
}

.header_inner .sub_navigation li.btn110 a:hover {
  border: 1px solid #fff;
  opacity: 0.5;
}

.header_inner .sub_navigation li.btn13 a {
  position: relative;
  width: 58px;
  height: 27px;
  border: 1px rgb(0, 0, 0) solid;
  border-radius: 13.5px;
  padding-right: 8px;
  text-align: center;
}

.header_inner .sub_navigation li.btn13 a.btn_lang_en::before {
  content: "EN";
}

.header_inner .sub_navigation li.btn13 a.btn_lang_jp::before {
  content: "JP";
}

.header_inner .sub_navigation li.btn13 a::after {
  position: absolute;
  display: block;
  right: 12px;
  top: calc(50% + 1px);
  width: 8.45px;
  height: 6.56px;
  background-image: url(../img/arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  content: "";
}

.header_inner .sub_navigation li.btn14 .btn_search_box {
  width: 29px;
  height: 28px;
  background-image: url(../img/icon_search.svg);
  background-size: contain;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .header_inner .sub_navigation {
    display: none;
  }
  .header_inner._open .sub_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 48px;
    right: 0;
    width: 100%;
    height: auto;
    padding-top: 56px;
    padding-bottom: 16px;
    background-color: rgb(230, 230, 230);
  }
  .header_inner .sub_navigation li.btn11,
  .header_inner .sub_navigation li.btn12 {
    margin-right: 32px;
  }
  .header_inner .sub_navigation li.btn11::after {
    right: -15px;
  }
  .header_inner .sub_navigation li.btn12::after {
    position: absolute;
    right: -15px;
    top: 5px;
    width: 1px;
    height: 17px;
    background-color: rgb(189, 189, 189);
    content: "";
  }
  .header_inner .sub_navigation li.btn13 {
    margin-right: 0;
  }
  .header_inner .sub_navigation li.btn13 a {
    width: auto;
    height: auto;
    border-style: none;
  }
  .header_inner .sub_navigation li.btn13 a.btn_lang_en::before {
    content: "English";
  }
  .header_inner .sub_navigation li.btn13 a.btn_lang_jp::before {
    content: "Japanese";
  }
  .header_inner .sub_navigation li.btn13 a::after {
    display: none;
  }
  .header_inner .sub_navigation li.btn14 {
    display: none;
  }
}
/* --- search_box --- */
.header_inner .sub_navigation li.search_box {
  position: absolute;
  top: -4px;
  right: -6px;
  height: 38px;
  width: 0;
  overflow: hidden;
}

.header_inner .sub_navigation li.search_box._open {
  width: auto;
  overflow: visible;
}

.header_inner .search_box .btn_search_box {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 38px;
  background-color: rgb(230, 230, 230);
  cursor: pointer;
  overflow: hidden;
}

._csstrans .header_inner .search_box .btn_search_box {
  -webkit-transition: all 0.2s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header_inner .search_box._open .btn_search_box {
  width: 44px;
  left: -44px;
}

.header_inner .search_box .btn_search_box::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 10px;
  height: 4px;
  background-color: rgb(0, 0, 0);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  content: "";
}

.header_inner .search_box .btn_search_box::after {
  position: absolute;
  top: 50%;
  left: 24px;
  border-top: 5px transparent solid;
  border-bottom: 5px transparent solid;
  border-left: 5px rgb(0, 0, 0) solid;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  content: "";
}

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

.header_inner .search_box .txtbox {
  width: 0px;
  overflow: hidden;
}

._csstrans .header_inner .search_box .txtbox {
  -webkit-transition: all 0.3s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header_inner .search_box._open .txtbox {
  width: 240px;
}

.header_inner .search_box input.txt {
  width: 240px;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 5px;
  border-radius: 0;
  border: 1px rgb(218, 218, 218) solid;
}

.header_inner .search_box .btnbox {
  width: 44px;
  height: 38px;
  background-color: rgb(230, 230, 230);
  padding: 4px 5px 5px 9px;
}

.header_inner .search_box .btnbox > input {
  width: 29px;
  height: 28px;
  background-image: url(../img/icon_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .header_inner .sub_navigation li.search_box {
    display: block;
    top: 16px;
    right: auto;
    width: auto;
    height: 28px;
    overflow: visible;
  }
  .header_inner .search_box .btn_search_box {
    display: none;
  }
  .header_inner .search_box .txtbox {
    width: auto;
  }
  .header_inner .search_box input.txt {
    width: 200px;
    padding: 4px 1px;
    border-style: none;
  }
  .header_inner .search_box .btnbox {
    width: auto;
    height: auto;
    margin-left: 8px;
    padding: 0;
  }
}
#search .search-input {
  background-color: #fff;
  width: 240px;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 5px;
  border-radius: 0;
  border: 1px rgb(218, 218, 218) solid;
}

/*
 * footer
 * -------------------------------------------------------------------
 */
/* ----------------
  footer_navigation
---------------- */
footer {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  background: rgb(129, 131, 131);
  color: rgb(255, 255, 255);
}

.layout_no_menu footer {
  padding-top: 10px;
  padding-bottom: 30px;
}

footer a {
  color: rgb(255, 255, 255) !important;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer_navigation_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 50px;
}

footer .footer_navigation_box > li {
  padding-left: 14px;
}

footer .footer_navigation_box > li:nth-child(1) {
  width: 24.3697478992%;
}

footer .footer_navigation_box > li:nth-child(2) {
  width: 25.4621848739%;
}

footer .footer_navigation_box > li:nth-child(3) {
  width: 50.0840336134%;
}

footer .footer_navigation > .link {
  position: relative;
  font-size: 18.4px;
  line-height: 2;
}

footer .footer_navigation > .link::before {
  position: absolute;
  top: 9px;
  left: -14px;
  display: block;
  width: 2px;
  height: 24px;
  background-color: rgb(195, 39, 44);
  content: "";
}

footer .footer_navigation > .link_box {
  margin-top: 10px;
}

footer .footer_navigation > .link_box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13.8px;
  line-height: 34px;
}

footer .footer_navigation > .link_box > ul > li {
  margin-bottom: 7px;
}

footer .footer_navigation > .link_box a > span {
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 1.4;
  display: block;
}

footer .footer_navigation_box > li:nth-child(3) .footer_navigation > .link_box > ul {
  height: 442px;
}

html[lang=en] footer .footer_navigation_box > li:nth-child(3) .footer_navigation > .link_box > ul {
  height: 510px;
}

footer .footer_sub_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

footer .footer_sub_navigation > li {
  position: relative;
  margin-right: 24px;
  margin-left: 24px;
  font-size: 13.8px;
  line-height: 20px;
}

footer .footer_sub_navigation > li::after {
  position: absolute;
  top: 0;
  right: -24px;
  display: block;
  width: 1px;
  height: 20px;
  background-color: rgb(154, 155, 158);
  content: "";
}

footer .footer_sub_navigation > li:last-child::after {
  display: none;
}

footer .copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 13.8px;
}

footer .footer_navigation_box > li:nth-child(3) > .footer_navigation > .link_box > ul > li {
  width: 50%;
  padding-right: 16px;
}

@media screen and (max-width: 980px) {
  footer .footer_navigation_box > li:nth-child(1) {
    width: 31.5217391304%;
  }
  footer .footer_navigation_box > li:nth-child(2) {
    width: 32.9347826087%;
  }
  footer .footer_navigation_box > li:nth-child(3) {
    width: 35.4347826087%;
  }
  footer .footer_navigation_box > li:nth-child(3) .footer_navigation > .link_box > ul {
    height: auto;
  }
  html[lang=en] footer .footer_navigation_box > li:nth-child(3) .footer_navigation > .link_box > ul {
    height: auto;
  }
  footer .footer_navigation_box > li:nth-child(3) > .footer_navigation > .link_box > ul > li {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 32px;
  }
  footer .footer_navigation_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
  footer .footer_navigation_box > li {
    width: 100% !important;
    padding-left: 0;
  }
  footer .footer_navigation > .link::before {
    display: none;
  }
  footer .footer_navigation > .link > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    border-bottom: 1px rgb(255, 255, 255) solid;
  }
  footer .footer_navigation > .link_box {
    display: none;
  }
  footer .footer_sub_navigation > li {
    margin-right: 12px;
    margin-left: 12px;
    font-size: 12px;
  }
  footer .footer_sub_navigation > li::after {
    right: -12px;
  }
  footer .copyright {
    font-size: 10.5px;
  }
}
.fv {
  width: 100%;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 0;
  }
}
.fv h1 {
  width: 100%;
}
.fv h1 picture {
  width: 100%;
}
.fv h1 picture > img {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv__btn {
  position: absolute;
  background-color: #d43f21;
  color: white;
  border: 2px solid #d43f21;
  border-radius: 9999px;
  padding: 16px;
  width: 93%;
  max-width: 300px;
  text-align: center;
  white-space: nowrap;
  bottom: 11%;
  left: 10%;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
}
.fv__btn:hover {
  background-color: #fef752;
  color: #D53F21;
}
@media screen and (max-width:1024px ) {
  .fv__btn {
    left: 32px;
    bottom: 10%;
    max-width: 220px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width:599px ) {
  .fv__btn {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 93%;
    bottom: 9%;
    max-width: 300px;
    font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
  }
}
.fv__btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn 3s ease-in-out infinite;
          animation: shiny-btn 3s ease-in-out infinite;
}
.fv__btn::after {
  content: "";
  position: absolute;
  display: block;
  background: url("../img/arrow-red.png") no-repeat center/contain;
  height: 14px;
  width: 10px;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: brightness(9);
          filter: brightness(9);
}
.fv__btn:hover::after {
  -webkit-filter: invert(14%) sepia(100%) saturate(7450%) hue-rotate(357deg) brightness(76%) contrast(110%);
          filter: invert(14%) sepia(100%) saturate(7450%) hue-rotate(357deg) brightness(76%) contrast(110%);
}

@-webkit-keyframes shiny-btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shiny-btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.about {
  margin-top: 80px;
  position: relative;
  z-index: 1;
  background-size: auto auto;
  background-color: rgb(254, 253, 188);
  background-image: repeating-linear-gradient(130deg, transparent, transparent 20px, rgb(254, 242, 156) 20px, rgb(254, 242, 156) 40px);
}
@media screen and (max-width:1024px ) {
  .about {
    margin-top: 40px;
  }
}
@media screen and (max-width:599px ) {
  .about {
    margin-top: 48px;
  }
}
.about__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
}
.about__wrapper {
  padding: 100px 0 180px;
}
@media screen and (max-width:599px ) {
  .about__wrapper {
    width: 93%;
    margin: 0 auto;
    padding: 48px 0 132px;
  }
}
.about__box {
  position: relative;
  background-color: white;
  padding: 48px 48px 56px;
  border-radius: 20px;
  z-index: 1;
  -webkit-box-shadow: 5px 5px #fed887;
          box-shadow: 5px 5px #fed887;
}
.about__box::before {
  content: "";
  position: absolute;
  display: block;
  height: 164px;
  width: 240px;
  background: url(../img/about-pht03.jpg) no-repeat center/contain;
  bottom: -132px;
  left: -80px;
  border-radius: 15px;
}
@media screen and (max-width:1024px ) {
  .about__box::before {
    left: 24px;
    bottom: -140px;
    padding: 48px;
  }
}
@media screen and (max-width:599px ) {
  .about__box::before {
    width: 140px;
    height: 96px;
    left: 0;
    bottom: -112px;
  }
}
.about__box::after {
  content: "";
  position: absolute;
  display: block;
  height: 260px;
  width: 164px;
  background: url(../img/about-pht02.png) no-repeat center/contain;
  bottom: -132px;
  right: 80px;
}
@media screen and (max-width:1024px ) {
  .about__box::after {
    right: -12px;
    bottom: -132px;
  }
}
@media screen and (max-width:599px ) {
  .about__box::after {
    width: 90px;
    height: 140px;
    right: -12px;
    bottom: -112px;
  }
}
@media screen and (max-width:1024px ) {
  .about__box {
    width: 100%;
    margin-top: 48px;
  }
}
@media screen and (max-width:599px ) {
  .about__box {
    padding: 32px 20px;
  }
}
.about__box p {
  font-size: clamp(1.6rem, 1.3872340426rem + 0.3546099291vw, 1.75rem);
  line-height: 1.7777777778;
}
@media screen and (max-width:599px ) {
  .about__box p {
    font-size: clamp(1.3rem, 1.0993311037rem + 0.6688963211vw, 1.5rem);
  }
}
.about__box p:not(:first-child) {
  margin-top: 8px;
}
.about__catch {
  font-size: clamp(2.4rem, 2.1163120567rem + 0.4728132388vw, 2.6rem);
  font-size: clamp(2rem, 1.397993311rem + 2.0066889632vw, 2.6rem);
  color: #FFA126;
  display: block;
}
@media screen and (max-width:599px ) {
  .about__catch {
    font-weight: normal;
  }
}
.about__catch::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/about-pht01.jpg) no-repeat center/contain;
  height: 172px;
  width: 238px;
  top: -56px;
  right: -80px;
  border-radius: 15px;
}
@media screen and (max-width:1024px ) {
  .about__catch::after {
    right: 24px;
    height: 182px;
    width: 258px;
  }
}
@media screen and (max-width:599px ) {
  .about__catch::after {
    width: 158px;
    height: 115px;
    right: -16px;
  }
}
.about__texts {
  position: relative;
  padding: 40px 0 0 32px;
  font-weight: normal;
}
@media screen and (max-width:599px ) {
  .about__texts {
    line-height: 1.7;
    padding: 24px 0 0 16px;
    text-align: center;
  }
}
.about__texts::before {
  content: "";
  position: absolute;
  display: block;
  left: 2px;
  top: 8px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, #ffa126, #ffa126 6px, transparent 6px);
  background-size: 1px 10px;
  background-position: left top;
  background-repeat: repeat-y;
}
.about__pht-ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  gap: 16px;
  width: calc(50% - 48px);
}
@media screen and (max-width:1024px ) {
  .about__pht-ul {
    width: 80%;
  }
}
@media screen and (max-width:599px ) {
  .about__pht-ul {
    grid-gap: 6px;
    gap: 6px;
    width: 90%;
  }
}
.about__pht-ul::before, .about__pht-ul::after {
  content: "";
  position: absolute;
  display: block;
  height: 50px;
  width: 134px;
}
@media screen and (max-width:1024px ) {
  .about__pht-ul::before, .about__pht-ul::after {
    width: 100px;
  }
}
@media screen and (max-width:599px ) {
  .about__pht-ul::before, .about__pht-ul::after {
    width: 74px;
  }
}
.about__pht-ul::before {
  background: url(../img/tape02.png) center/contain no-repeat;
  bottom: -24px;
  left: -24px;
  z-index: 2;
}
.about__pht-ul::after {
  background: url(../img/tape01.png) center/contain no-repeat;
  top: -24px;
  right: -24px;
  z-index: 2;
}
.about__pht-ul-li {
  height: 176px;
  width: 284px;
}
@media screen and (max-width:1024px ) {
  .about__pht-ul-li {
    width: 100%;
    height: auto;
    max-height: 160px;
  }
}
.about__pht-ul-li > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.access {
  margin-top: 120px;
}
@media screen and (max-width:1024px ) {
  .access {
    margin-top: 80px;
  }
}
.access__inner {
  max-width: 1240px;
  width: 93%;
  margin: 0 auto;
}
.access__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 100px;
}
@media screen and (max-width:599px ) {
  .access__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
}
.access__map {
  width: 50%;
}
@media screen and (max-width:599px ) {
  .access__map {
    width: 100%;
    height: 280px;
  }
}
.access__map > iframe {
  height: 100%;
  width: 100%;
}
.access__ul {
  width: calc(50% - 56px);
  margin: 32px 0;
}
@media screen and (max-width:1024px ) {
  .access__ul {
    width: calc(50% - 32px);
  }
}
@media screen and (max-width:599px ) {
  .access__ul {
    width: 100%;
  }
}
.access__ul-li:not(:first-child) {
  margin-top: 24px;
}
.access__ul-li p {
  font-size: 1.8rem;
}

.creative {
  background: url("../img/creativebg-pc.png") no-repeat bottom/cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width:599px ) {
  .creative {
    background: url("../img/creativebg-sp.png") no-repeat bottom/cover;
  }
}
.creative__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 100px 0 100px;
}
@media screen and (max-width:599px ) {
  .creative__inner {
    padding: 48px 0 80px;
  }
}
.creative__catch {
  width: 100%;
  height: auto;
}
.creative__catch > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.creative__sub-catch {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .creative__sub-catch {
    margin-top: 24px;
    text-align: left;
  }
}
.creative__slider {
  position: relative;
  background-color: #5c392a;
  padding: 72px 40px 64px;
  border-radius: 15px;
  margin-top: 40px;
}
@media screen and (max-width:599px ) {
  .creative__slider {
    padding: 72px 40px;
  }
}
.creative__slider::before, .creative__slider::after {
  content: "";
  position: absolute;
  display: block;
}
.creative__slider::before {
  width: 100px;
  height: 30px;
  top: 20px;
  left: 28px;
  background: url(../img/The-Work.png) no-repeat center/contain;
}
.creative__slider::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid #d1faff;
  border-bottom: 0;
  top: 0;
  left: 32px;
}
.creative__slider-box {
  height: 320px;
}
@media screen and (max-width:599px ) {
  .creative__slider-box {
    height: 100%;
  }
}

.splide {
  position: relative;
}
.splide .splide__slide {
  height: 100%;
  width: 32% !important;
}
@media screen and (max-width:599px ) {
  .splide .splide__slide {
    width: 100% !important;
  }
}
.splide .splide__slide > img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}
.splide .splide__slide:not(:last-child) {
  margin-right: 12px;
}
.splide__arrow {
  background-color: initial !important;
  opacity: 1 !important;
}
.splide__arrow svg {
  fill: #fff !important;
  height: 2em !important;
  width: 2em !important;
}
.splide__arrow--prev {
  left: -32px !important;
  color: white;
}
.splide__arrow--next {
  right: -32px !important;
  color: white;
}
.splide__pagination {
  bottom: -32px !important;
}
.splide__pagination__page {
  color: #fff !important;
  opacity: 1 !important;
  height: 6px !important;
  width: 6px !important;
  margin: 6px !important;
}

.entry {
  background-color: #D53F21;
  background: url("../img/entrybg-pc.png") no-repeat top/cover;
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width:599px ) {
  .entry {
    background: url("../img/entrybg-sp.png") no-repeat top/cover;
  }
}
.entry__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 100px 0 100px;
}
@media screen and (max-width:599px ) {
  .entry__inner {
    padding: 48px 0;
  }
}
.entry__catch {
  width: 100%;
  height: auto;
}
.entry__catch > span {
  padding: 4px 16px;
  text-align: center;
  color: #fff;
  background-color: #FFA126;
  font-size: clamp(1.8rem, 1.5163120567rem + 0.4728132388vw, 2rem);
  display: block;
  width: 100%;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-weight: 500;
}
.entry__catch > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.entry__sub-catch {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .entry__sub-catch {
    margin-top: 24px;
    text-align: left;
  }
}
.entry__contents {
  display: none;
}
.entry__contents.active {
  display: block;
}
.entry__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.entry__ul-li {
  width: 100%;
  padding: 24px 32px;
  background-color: #fff;
  border: 1px solid #eeb0a5;
  border-radius: 15px;
}
.entry__ul-li:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width:599px ) {
  .entry__ul-li {
    padding: 16px 20px;
  }
}
.entry__ul-li p {
  font-size: 1.4rem;
}
@media screen and (max-width:599px ) {
  .entry__ul-li p {
    font-size: clamp(1.2rem, 0.8989966555rem + 1.0033444816vw, 1.5rem);
  }
}
.entry dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width:599px ) {
  .entry dl {
    display: block;
  }
}
.entry dl dt {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  color: #FFA126;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .entry dl dt {
    font-size: clamp(1.4rem, 1.1993311037rem + 0.6688963211vw, 1.6rem);
  }
}
.entry dl dd {
  width: 80%;
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
}
.entry dl dd time, .entry dl dd strong {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width:599px ) {
  .entry dl dd time, .entry dl dd strong {
    font-size: clamp(1.4rem, 1.1993311037rem + 0.6688963211vw, 1.6rem);
  }
}
@media screen and (max-width:599px ) {
  .entry dl dd {
    width: 100%;
    font-size: clamp(1.3rem, 1.1996655518rem + 0.3344481605vw, 1.4rem);
  }
}
.entry dl dd.entry__dd--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 24px;
}
.entry dl dd .entry__name {
  width: 30%;
  margin-left: 16px;
  font-weight: 500;
}
.entry dl dd .entry__name strong {
  font-weight: 500;
}
.entry dl dd .entry__name span {
  font-weight: normal;
}
.entry dl dd .entry__name--yakuin {
  width: 88%;
}
@media screen and (max-width:599px ) {
  .entry dl dd .entry__name--yakuin {
    width: 100%;
  }
}
.entry dl dd .entry__profile {
  width: 70%;
  font-weight: normal;
}
.entry dl dd .entry__profile a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.entry dl dd .entry__profile a:hover {
  opacity: 0.8;
}
.entry dl dd .entry__comment {
  width: 100%;
  font-weight: normal;
  margin-top: 8px;
  margin-left: 16px;
  font-size: 12px;
}
.entry dl dd .entry__detail--normal {
  font-weight: normal;
}
.entry dl dd .entry__detail--normal > p {
  font-size: 1.2rem !important;
}
@media screen and (max-width:599px ) {
  .entry dl dd p {
    font-size: clamp(1.2rem, 0.8989966555rem + 1.0033444816vw, 1.5rem);
  }
}
.entry__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 540px;
  margin: 16px 0;
}
@media screen and (max-width:599px ) {
  .entry__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.entry__sns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.entry__sns:hover {
  opacity: 0.7;
}
@media screen and (max-width:599px ) {
  .entry__sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 270px;
    width: 93%;
    margin: 0 auto;
  }
}
.entry__sns::after {
  content: "";
  position: absolute;
  display: block;
  height: 10px;
  width: 16px;
  background: url("../img/arrow-black.png") no-repeat center/contain;
  top: 50%;
  right: -24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.entry__sns > img {
  height: 32px;
  width: 32px;
  margin-right: 18px;
}
.entry__copy {
  max-width: 540px;
  margin: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #ffcf91;
  padding: 14px 48px;
}
@media screen and (max-width:599px ) {
  .entry__copy {
    padding: 16px;
  }
}
.entry__copy > p {
  font-weight: 500;
  font-size: 1.4rem !important;
}
.entry__copy-btn {
  background-color: #fff;
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.entry__copy-btn:hover {
  opacity: 0.7;
}
.entry__title {
  position: relative;
  font-size: clamp(1.8rem, 0.9489361702rem + 1.4184397163vw, 2.4rem);
  color: #FFA126;
  text-align: center;
  padding-top: 100px;
  font-weight: 500;
}
.entry__title::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-top: 40px solid #FFA126;
  border-bottom: 0;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.entry__judge-title {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  color: #FFA126;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width:599px ) {
  .entry__judge-title {
    margin-bottom: 16px;
  }
}
.entry__judge-present {
  position: relative;
}
.entry__judge-present::after {
  content: "";
  position: absolute;
  display: block;
  height: 130px;
  width: 260px;
  background: url("../img/prize_image_pc.png") no-repeat center/contain;
  top: -10px;
  right: -20px;
}
@media screen and (max-width:1024px ) {
  .entry__judge-present::after {
    max-width: 215px;
    width: 30%;
    top: -26px;
    right: -12px;
    background: url("../img/prize_image_sp.png") no-repeat center/contain;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-present::after {
    max-width: 215px;
    width: 60%;
    top: -10px;
    right: -12px;
    background: url("../img/prize_image_sp.png") no-repeat center/contain;
  }
}
.entry__judge-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.entry__judge-flex:not(:last-child) {
  border-bottom: 1px solid #FFA126;
  padding-bottom: 15px;
}
@media screen and (max-width:599px ) {
  .entry__judge-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-flex dt {
    width: 50%;
    height: auto;
  }
}
.entry__judge-flex--special .entry__name--sp {
  display: none !important;
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--special {
    display: block !important;
  }
  .entry__judge-flex--special dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
  }
  .entry__judge-flex--special dt strong {
    font-weight: 500;
  }
  .entry__judge-flex--special dt span {
    font-weight: normal;
  }
  .entry__judge-flex--special .entry__dd--line {
    margin-left: initial !important;
  }
  .entry__judge-flex--special .entry__name {
    display: none !important;
  }
  .entry__judge-flex--special .entry__name--sp {
    display: block !important;
    margin-left: 16px;
    color: #333;
  }
  .entry__judge-flex--special .entry__profile {
    width: 100% !important;
    font-weight: normal;
    margin-top: 12px;
  }
  .entry__judge-flex--special .entry__comment {
    margin-left: 0 !important;
    margin-top: 8px;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--normal {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--normal dd {
    width: calc(50% - 12px) !important;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--normal .entry__pht {
    width: 100%;
    height: auto;
  }
}
.entry__judge-flex--normal .entry__name--yakuin {
  margin-left: 12px;
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--normal .entry__name--yakuin {
    margin-left: 0 !important;
    margin-top: 12px;
  }
}
@media screen and (max-width:599px ) {
  .entry__judge-flex--normal .entry__name--yakuin span {
    font-size: 1.2rem;
  }
}
.entry__pht {
  height: 186px;
  width: 160px;
}
@media screen and (max-width:599px ) {
  .entry__pht {
    height: 172px;
    width: 150px;
  }
}
.entry__pht > img {
  height: auto;
  width: 100%;
}
.entry-submit {
  padding: 64px 0 102px;
}
.entry-submit--orange {
  background: url("../img/entry-submitbg-pc.png") no-repeat bottom/cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width:599px ) {
  .entry-submit--orange {
    background: url("../img/entry-submitbg-sp.png") no-repeat bottom/cover;
    padding: 40px 0 80px;
  }
}
.entry-submit__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}
.entry-submit h3 {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
}
.entry-submit a {
  display: block;
  margin-top: 20px;
}
.entry-submit p {
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
  display: block;
  margin-top: 12px;
}
.entry__ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width:599px ) {
  .entry__ol {
    margin-top: 12px;
  }
}
.entry__ol-li {
  width: calc(33.3333333333% - 12px);
  position: relative;
  background-color: #ffa126;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 20px, #ffac3f 20px, #ffac3f 40px);
  padding: 0 10px 15px;
  border-radius: 15px;
}
.entry__ol-li:nth-of-type(4), .entry__ol-li:nth-of-type(5), .entry__ol-li:nth-of-type(6) {
  margin-top: 35px;
}
@media screen and (max-width:1024px ) {
  .entry__ol-li {
    width: calc(50% - 12px);
    margin-top: 35px;
    padding: 0 24px 15px;
  }
}
@media screen and (max-width:599px ) {
  .entry__ol-li {
    width: 100%;
  }
}
.entry__ol-li > span {
  position: absolute;
  height: 45px;
  width: 45px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2rem;
  font-weight: bold;
  padding: 8px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9999px;
  border: 5px solid #FFA126;
  background-color: #FEF814;
  color: #FFA126;
}
.entry__ol-li > p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 24px 5px 5px;
  text-align: center;
}
.entry__ol-li > h4 {
  color: #FFA126;
  background-color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 3px 0;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow {
  margin-top: 120px;
}
@media screen and (max-width:1024px ) {
  .flow {
    margin-top: 80px;
  }
}
.flow__inner {
  max-width: 1240px;
  width: 93%;
  margin: 0 auto;
}
.flow__ul {
  margin-top: 100px;
}
@media screen and (max-width:599px ) {
  .flow__ul {
    margin-top: 80px;
  }
}
.flow__ul-li {
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width:599px ) {
  .flow__ul-li {
    font-size: 1.7rem;
  }
}
.flow__ul-li:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/triangle.png) center/contain no-repeat;
  z-index: 1;
}
@media screen and (max-width:1024px ) {
  .flow__ul-li:not(:last-child)::after {
    content: none;
  }
}
@media screen and (max-width:599px ) {
  .flow__ul-li:not(:last-child)::after {
    content: "";
    top: calc(100% + 16px);
    right: 43%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.flow__ul-li p {
  margin-top: 12px;
}
.flow__title {
  font-size: 2.4rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow__title > img {
  height: 30px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow__pht {
  width: 100%;
  height: 212px;
  margin-top: 4px;
}
@media screen and (max-width:599px ) {
  .flow__pht {
    height: auto;
  }
}
.flow__pht > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 64px;
}
@media screen and (max-width:599px ) {
  .flow__wrapper {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flow__box {
  width: calc(50% - 32px);
}
@media screen and (max-width:1024px ) {
  .flow__box {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width:599px ) {
  .flow__box {
    width: 100%;
  }
  .flow__box:not(:last-child) {
    margin-top: 24px;
  }
}
.flow__price {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width:1024px ) {
  .flow__price {
    font-size: 2.8rem;
  }
}

.group {
  background: url("../img/group-pc.jpg") no-repeat top/cover;
  width: 100%;
  height: auto;
  position: relative;
}
.group::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 40px;
  bottom: 0;
  left: 0;
  background: url("../img/white-ashirai.png") no-repeat top/cover;
}
@media screen and (max-width:599px ) {
  .group {
    background: url("../img/group-sp.jpg") no-repeat top/cover;
    top: -1px;
  }
}
.group__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width:599px ) {
  .group__inner {
    padding: 88px 0 72px;
  }
}
.group__catch {
  width: 100%;
  height: auto;
  max-width: 660px;
  margin: 0 auto;
}
.group__catch > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.group__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
}
@media screen and (max-width:599px ) {
  .group__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
}
.group__ul-li {
  width: 33.3333333333%;
}
@media screen and (max-width:599px ) {
  .group__ul-li {
    width: 100%;
  }
}
.group__award {
  background-color: #FFA126;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 20px, #ffac40 20px, #ffac40 40px);
  padding: 24px 28px 40px;
  border-radius: 15px;
}
.group__award-catch {
  font-size: clamp(2.2rem, 1.9163120567rem + 0.4728132388vw, 2.4rem);
  color: white;
  font-weight: 500;
  text-align: center;
  font-weight: bold;
}
.group__award-name {
  font-weight: 500;
  color: white;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
  text-align: center;
  margin-bottom: 12px;
}
.group__award-pht {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.group__award-pht > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.group__comment {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 20px;
  min-width: 120px;
  max-width: 100%;
  background: white;
  border: 1px solid #FFA126;
  border-radius: 15px;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
  min-height: 640px;
}
@media screen and (max-width:599px ) {
  .group__comment {
    min-height: auto;
  }
}
.group__comment::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 15%;
  margin-left: -17px;
  border: 14.5px solid transparent;
  border-bottom: 14px solid #fff;
  z-index: 2;
}
@media screen and (max-width:599px ) {
  .group__comment::before {
    border: 14px solid transparent;
    border-bottom: 14px solid #fff;
  }
}
.group__comment::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 15%;
  margin-left: -18px;
  border: 15px solid transparent;
  border-bottom: 15px solid #ffac40;
  z-index: 1;
}
.group__comment-name {
  font-weight: 500;
}
.group__comment-name:nth-of-type(3) {
  margin-top: 20px;
}
.group__comment-text {
  margin-top: 12px;
}
.group__notice {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  margin-top: 16px;
}

.highlight {
  margin-top: 120px;
}
@media screen and (max-width:1024px ) {
  .highlight {
    margin-top: 64px;
  }
}
.highlight__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
}
.highlight__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  font-size: clamp(3rem, 2.4326241135rem + 0.9456264775vw, 3.4rem);
  color: #5c392a;
  width: 100%;
  margin: 48px auto 0;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .highlight__catch {
    width: 93%;
    margin: 32px auto 0;
    font-size: 2.4rem;
  }
}
.highlight__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 32px auto 80px;
}
@media screen and (max-width:599px ) {
  .highlight__box {
    margin: 20px auto 56px;
  }
}
.highlight__pht {
  width: calc(50% - 10px);
  height: 400px;
}
@media screen and (max-width:599px ) {
  .highlight__pht {
    height: auto;
    width: calc(50% - 4px);
  }
}
.highlight__pht > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.highlight__comment {
  padding: 40px;
  margin-top: 32px;
  border: 1px solid #D53F21;
  border-radius: 15px;
}
@media screen and (max-width:599px ) {
  .highlight__comment {
    padding: 32px 24px;
    margin-top: 24px;
  }
}
.highlight__comment-title {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  font-weight: 500;
}
.highlight__comment > p {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  margin-top: 24px;
}
@media screen and (max-width:599px ) {
  .highlight__comment > p {
    margin-top: 16px;
  }
}

.individual {
  background: url("../img/individual-pc.jpg") no-repeat top/cover;
  width: 100%;
  height: auto;
  margin-top: 120px;
}
@media screen and (max-width:599px ) {
  .individual {
    background: url("../img/individual-sp.jpg") no-repeat top/cover;
    margin-top: 120px;
  }
}
@media screen and (max-width:1024px ) {
  .individual {
    margin-top: 80px;
  }
}
.individual__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 100px 0 72px;
}
@media screen and (max-width:599px ) {
  .individual__inner {
    padding: 72px 0 32px;
  }
}
.individual__catch {
  width: 100%;
  height: auto;
  max-width: 660px;
  margin: 0 auto;
}
.individual__catch > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.individual__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
}
@media screen and (max-width:599px ) {
  .individual__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
}
.individual__ul-li {
  width: 33.3333333333%;
}
@media screen and (max-width:599px ) {
  .individual__ul-li {
    width: 100%;
  }
}
.individual__award {
  background-color: #D53F21;
  background-image: repeating-linear-gradient(130deg, transparent, transparent 20px, #da563c 20px, #da563c 40px);
  padding: 24px 28px 40px;
  border-radius: 15px;
}
.individual__award-catch {
  font-size: clamp(2.2rem, 1.9163120567rem + 0.4728132388vw, 2.4rem);
  color: white;
  font-weight: 500;
  text-align: center;
  font-weight: bold;
}
.individual__award-name {
  font-weight: 500;
  color: white;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
  text-align: center;
  margin-bottom: 12px;
}
.individual__award-pht {
  width: 100%;
  height: auto;
  margin-top: 16px;
}
.individual__award-pht > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.individual__comment {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 20px;
  min-width: 120px;
  max-width: 100%;
  background: white;
  border: 1px solid #D53F21;
  border-radius: 15px;
  font-size: clamp(1.4rem, 1.1163120567rem + 0.4728132388vw, 1.6rem);
}
.individual__comment.minH01 {
  min-height: 720px;
}
.individual__comment.minH02 {
  min-height: 670px;
}
@media screen and (max-width:599px ) {
  .individual__comment.minH01, .individual__comment.minH02 {
    min-height: auto;
  }
}
.individual__comment::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 15%;
  margin-left: -17px;
  border: 14.5px solid transparent;
  border-bottom: 14px solid #fff;
  z-index: 2;
}
@media screen and (max-width:599px ) {
  .individual__comment::before {
    border: 14px solid transparent;
    border-bottom: 14px solid #fff;
  }
}
.individual__comment::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 15%;
  margin-left: -18px;
  border: 15px solid transparent;
  border-bottom: 15px solid #d53f21;
  z-index: 1;
}
.individual__comment-name {
  font-weight: 500;
}
.individual__comment-name:nth-of-type(3) {
  margin-top: 20px;
}
.individual__comment-text {
  margin-top: 12px;
}
.individual__notice {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  margin-top: 16px;
}

.info {
  background: url("../img/infobg-pc.jpg") no-repeat top/cover;
  width: 100%;
  height: auto;
  margin-top: 120px;
}
@media screen and (max-width:599px ) {
  .info {
    background: url("../img/infobg-sp.jpg") no-repeat top/cover;
  }
}
@media screen and (max-width:1024px ) {
  .info {
    margin-top: 80px;
  }
}
.info__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 100px 0 100px;
}
@media screen and (max-width:599px ) {
  .info__inner {
    padding: 72px 0;
  }
}
.info__catch {
  width: 100%;
  height: auto;
}
.info__catch > picture > img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.info__sub-catch {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .info__sub-catch {
    margin-top: 24px;
    text-align: left;
  }
}
.info__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.info__ul-li {
  width: 100%;
  padding: 24px 32px;
  background-color: #fff;
  border: 1px solid #EEB0A5;
  border-radius: 15px;
}
.info__ul-li:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width:599px ) {
  .info__ul-li {
    padding: 16px 20px;
  }
}
.info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width:599px ) {
  .info dl {
    display: block;
  }
}
.info dl dt {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  color: #D53F21;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .info dl dt {
    font-size: clamp(1.3rem, 1.1996655518rem + 0.3344481605vw, 1.4rem);
  }
}
.info dl dd {
  width: 80%;
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
}
.info dl dd > time, .info dl dd > strong {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .info dl dd > time, .info dl dd > strong {
    font-size: clamp(1.3rem, 1.1996655518rem + 0.3344481605vw, 1.4rem);
  }
}
@media screen and (max-width:599px ) {
  .info dl dd {
    width: 100%;
    font-size: clamp(1.3rem, 1.1996655518rem + 0.3344481605vw, 1.4rem);
  }
}
.info-submit {
  background: url("../img/info-submitbg-pc.png") no-repeat bottom/cover;
  width: 100%;
  height: auto;
  padding: 64px 0 102px;
}
@media screen and (max-width:599px ) {
  .info-submit {
    background: url("../img/info-submitbg-sp.png") no-repeat bottom/cover;
    padding: 40px 0 80px;
  }
}
.info-submit__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}
.info-submit h3 {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
}
.info-submit__catch {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.info-submit__catch::before, .info-submit__catch::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-submit__catch::before {
  background: url("../img/ashirai04.png") no-repeat center/contain;
  right: -32px;
  height: 28px;
  width: 28px;
}
.info-submit__catch::after {
  background: url("../img/ashirai05.png") no-repeat center/contain;
  left: -32px;
  height: 22px;
  width: 22px;
}
.info-submit a {
  display: block;
  margin-top: 20px;
}
.info-submit p {
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
  display: block;
  margin-top: 12px;
}

.judges__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 72px 0;
}
@media screen and (max-width:599px ) {
  .judges__inner {
    padding: 20px 0 72px;
  }
}
.judges__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  font-size: clamp(3rem, 2.4326241135rem + 0.9456264775vw, 3.4rem);
  color: #D53F21;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
}
.judges__catch--end {
  font-size: clamp(2rem, 1.4326241135rem + 0.9456264775vw, 2.4rem);
  margin-top: 64px;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .judges__catch--end {
    margin-top: 40px !important;
  }
}
@media screen and (max-width:599px ) {
  .judges__catch {
    width: 93%;
    margin: 0 auto;
  }
}
.judges__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}
.judges__pht {
  width: calc(50% - 10px);
  height: 400px;
}
.judges__pht > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.judges dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width:599px ) {
  .judges dl {
    display: block;
  }
}
.judges dl dt {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  color: #FFA126;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .judges dl dt {
    font-size: clamp(1.4rem, 1.1993311037rem + 0.6688963211vw, 1.6rem);
  }
}
.judges dl dd {
  width: 80%;
  font-size: clamp(1.2rem, 0.9163120567rem + 0.4728132388vw, 1.4rem);
}
.judges dl dd time, .judges dl dd strong {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width:599px ) {
  .judges dl dd time, .judges dl dd strong {
    font-size: clamp(1.4rem, 1.1993311037rem + 0.6688963211vw, 1.6rem);
  }
}
@media screen and (max-width:599px ) {
  .judges dl dd {
    width: 100%;
    font-size: clamp(1.3rem, 1.1996655518rem + 0.3344481605vw, 1.4rem);
  }
}
.judges dl dd.judges__dd--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 24px;
}
.judges dl dd .judges__name {
  width: 100%;
  margin-left: 16px;
}
.judges dl dd .judges__name--yakuin {
  width: 100%;
}
.judges dl dd .judges__profile {
  width: 100%;
  font-weight: normal;
  margin-top: 12px;
}
.judges dl dd .judges__profile a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.judges dl dd .judges__profile a:hover {
  opacity: 0.8;
}
.judges dl dd .judges__comment {
  width: 100%;
  font-weight: normal;
  margin-top: 8px;
  margin-left: 16px;
  font-size: 12px;
}
.judges dl dd .judges__detail--normal {
  font-weight: normal;
  font-size: 1.2rem;
}
@media screen and (max-width:599px ) {
  .judges dl dd p {
    font-size: clamp(1.3rem, 1.0993311037rem + 0.6688963211vw, 1.5rem);
  }
}
.judges__judge-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 12px);
  padding: 32px 48px;
  border: 1px solid #D53F21;
  border-radius: 15px;
}
@media screen and (max-width:1024px ) {
  .judges__judge-flex {
    padding: 15px;
  }
}
@media screen and (max-width:599px ) {
  .judges__judge-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
    width: 100%;
  }
}
@media screen and (max-width:599px ) {
  .judges__judge-flex dt {
    width: 50%;
    height: auto;
  }
}
.judges__judge-flex--special {
  width: 100%;
}
.judges__judge-flex--special .judges__name--sp {
  display: none !important;
}
@media screen and (max-width:599px ) {
  .judges__judge-flex--special {
    display: block !important;
  }
  .judges__judge-flex--special dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
  }
  .judges__judge-flex--special .judges__dd--line {
    margin-left: initial !important;
  }
  .judges__judge-flex--special .judges__name {
    display: none !important;
    font-weight: 500;
  }
  .judges__judge-flex--special .judges__name--sp {
    display: block !important;
    margin-left: 16px;
    color: #333;
    font-weight: 500;
  }
  .judges__judge-flex--special .judges__profile {
    width: 100% !important;
    font-weight: normal;
    margin-top: 12px;
  }
  .judges__judge-flex--special .judges__comment {
    margin-left: 0 !important;
    margin-top: 8px;
  }
}
.judges__pht {
  height: 186px;
  width: 160px;
}
@media screen and (max-width:599px ) {
  .judges__pht {
    height: 172px;
    width: 145px;
  }
}
.judges__pht > img {
  height: auto;
  width: 100%;
}
.judges__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 128px;
  width: 93%;
  margin: 64px auto 0;
}
.judges__icon {
  height: 40px;
  width: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.judges__icon:hover {
  opacity: 0.7;
}
.judges__icon > img {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.panel {
  margin-top: 24px;
}
.panel__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
}
.panel__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.panel__ul-li {
  position: relative;
  width: calc(33.3333333333% - 30px);
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
}
@media screen and (max-width:599px ) {
  .panel__ul-li {
    height: 98px;
    width: calc(33.3333333333% - 8px);
  }
}
.panel__btn {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border: 5px solid #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  color: white;
  line-height: 1;
}
.panel__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width:599px ) {
  .panel__btn {
    line-height: 1.3;
  }
}
.panel__btn::before {
  content: "";
  position: absolute;
  display: block;
  height: 7px;
  width: 16px;
  background: url("../img/arrow.png") no-repeat center/contain;
  bottom: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.panel__btn--info {
  background-color: #D53F21;
}
.panel__btn--entry {
  background-color: #FFA126;
}
.panel__btn--friend {
  background-color: #5C392A;
}
.panel__btn--coming-soon {
  background-color: #A7A7A7;
}
.panel__btn--coming-soon::after {
  content: "Coming Soon";
  font-size: 10px;
  line-height: 1.7;
}
@media screen and (max-width:599px ) {
  .panel__btn--coming-soon::after {
    line-height: 1.4;
  }
}
.panel__btn--finish {
  background-color: #A7A7A7;
  pointer-events: none;
}
.panel__btn--finish::after {
  content: "終了しました";
  font-size: 10px;
  line-height: 1.7;
}
@media screen and (max-width:599px ) {
  .panel__btn--finish::after {
    line-height: 1.4;
  }
}

.policy__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
  padding: 72px 0;
}
@media screen and (max-width:599px ) {
  .policy__inner {
    padding: 48px 0;
  }
}
.policy__title {
  font-size: 2.4rem;
  text-align: center;
}
.policy__wrapper {
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px 20px;
  margin-top: 32px;
}
.policy__wrapper p {
  font-size: 1.2rem;
  font-weight: normal;
}
.policy__item {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 20px 0 12px;
}
.policy__ul-li {
  font-size: 1.2rem;
  font-weight: normal;
}

.result {
  margin-top: 56px;
}
.result__inner {
  max-width: 840px;
  width: 93%;
  margin: 0 auto;
}
.result__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  font-size: clamp(3rem, 2.4326241135rem + 0.9456264775vw, 3.4rem);
  color: #D53F21;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .result__catch {
    max-width: 320px;
    width: 93%;
    margin: 0 auto;
    font-size: clamp(2.2rem, 1.9163120567rem + 0.4728132388vw, 2.4rem);
  }
}
.result__catch::before, .result__catch::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
@media screen and (max-width:599px ) {
  .result__catch::before, .result__catch::after {
    width: 36px;
    height: 36px;
  }
}
.result__catch::before {
  left: 0;
  background: url(../img/ashirai06.png) no-repeat center/contain;
}
.result__catch::after {
  right: 0;
  background: url(../img/ashirai07.png) no-repeat center/contain;
}
.result__sub-catch {
  font-size: clamp(1.6rem, 1.3163120567rem + 0.4728132388vw, 1.8rem);
  text-align: center;
  margin-top: 32px;
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .result__sub-catch {
    margin-top: 24px;
    text-align: left;
  }
}

.step {
  margin-top: 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:1024px ) {
  .step {
    margin-top: 80px;
  }
}
.step__inner {
  max-width: 700px;
  width: 93%;
  margin: 0 auto;
}
.step__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  font-size: clamp(2.4rem, 2.1163120567rem + 0.4728132388vw, 2.6rem);
  font-weight: 500;
}
@media screen and (max-width:599px ) {
  .step__catch {
    width: 93%;
    margin: 0 auto;
  }
}
.step__catch::after {
  content: "";
  position: absolute;
  display: block;
  height: 40px;
  width: 120px;
  background: url(../img/ashirai01.png) no-repeat center/contain;
  top: 0;
  right: 0;
}
@media screen and (max-width:599px ) {
  .step__catch::after {
    top: -32px;
  }
}
.step__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-top: 32px;
}
.step__ul::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 30px solid #333;
  border-right: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width:599px ) {
  .step__ul::after {
    border-left: 15px solid #333;
  }
}
.step__ul-li {
  width: calc(50% - 40px);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and (max-width:599px ) {
  .step__ul-li {
    width: calc(50% - 20px);
  }
}
.step__ul-li::before {
  content: "";
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  bottom: 0;
  right: 12px;
}
.step__ul-li::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 30px solid #fff;
  border-right: 0;
  top: 20px;
  left: -20px;
}
.step__ul-li > a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 12px 16px 32px;
  display: block;
}
.step__ul-li > a:hover {
  opacity: 0.7;
}
@media screen and (max-width:599px ) {
  .step__ul-li > a {
    padding: 12px 12px 32px;
  }
}
.step__ul-li > a > img, .step__ul-li > a > .step__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:599px ) {
  .step__ul-li > a > img, .step__ul-li > a > .step__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.step__ul-li > a > img, .step__ul-li > a > .step__flex > img {
  max-width: 64px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.step__ul-li:nth-child(1) {
  background-color: #D53F21;
}
.step__ul-li:nth-child(1)::before {
  background: url(../img/ashirai02.png) no-repeat center/contain;
}
.step__ul-li:nth-child(2) {
  background-color: #FFA126;
}
.step__ul-li:nth-child(2)::before {
  background: url(../img/ashirai03.png) no-repeat center/contain;
}
.step__ul-li span {
  font-size: clamp(1.2rem, 1.0581560284rem + 0.2364066194vw, 1.3rem);
  color: #FFA126;
  background-color: #fff;
  padding: 2px 8px;
  border-radius: 9999px;
  white-space: nowrap;
  margin-left: 20px;
}
@media screen and (max-width:599px ) {
  .step__ul-li span {
    margin-left: initial;
    margin-top: 12px;
    font-size: clamp(1rem, 0.7993311037rem + 0.6688963211vw, 1.2rem);
    font-weight: 500;
  }
}
.step__ul-li h3 {
  color: white;
  font-size: clamp(1.5rem, 1.0744680851rem + 0.7092198582vw, 1.8rem);
}
@media screen and (max-width:599px ) and (max-width:599px ) {
  .step__ul-li h3 {
    margin-top: 12px;
  }
}/*# sourceMappingURL=style.css.map */