@charset "UTF-8";

/* _reset.sass */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background-color: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

ins {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: transparent;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: none;
  text-decoration: none;
  cursor: default;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* _base.sass */

/* _variables.scss */
:root {
  /* Site Colors */
  --main-color: #E18026;
  --accent-color: #ea3033;

  /* Layout Colors */
  --color-base: #FBF7F2;
  --color-space: #FBF8F2;
  --color-black: #000;
  --color-richBlack: #333;
  --color-darkGray: #666;
  --color-gray: #8B8B8B;
  --color-lightGray: #eee;
  --color-white: #fff;
  --color-blue: #04a9a4;
  --color-orange: #ff8c00;
  --color-yellow: #f1e05a;
  --color-red: #f33;
  --color-brown: #461517;
  --color-green: #418339;
  --color-pink: #FFFCF8;
  --color-line: #06c755;

  /* Font Colors */
  --font-color-base: #3C2502;
  --font-color-main: var(--main-color);
  --font-color-accent: var(--accent-color);
  --font-color-black: #333;
  --font-color-darkGray: #666;
  --font-color-gray: #8B8B8B;
  --font-color-white: #fff;
  --font-color-red: #ea3033;
  --font-color-blue: #3664c9;
  --font-color-orange: #E29E37;
  --font-color-gold: #DCB769;
  --font-color-green: #418339;
  --font-color-azuki: #A3727E;
  --font-color-blown: #3C2502;

  /* Font Sizes */
  --font-size-xxs: 0.8rem;
  --font-size-xs: 1.0rem;
  --font-size-s: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-m: 1.6rem;
  --font-size-l: 1.8rem;
  --font-size-xl: 2.0rem;
  --font-size-xxl: 2.4rem;
  --font-size-xxxl: 2.6rem;
  --font-size-card: 2.2rem;
  --font-size-small-heading: 2.8rem;
  --font-size-medium-heading: 3.6rem;
  --font-size-middle-heading: 4.0rem;
  --font-size-sub-heading: 4.8rem;
  --font-size-heading: 5.8rem;

  /* Button Colors */
  --button-color-base: #F7F5F1;
  --button-color-main: #E18026;
  --button-color-primary: #3664c9;
  --button-color-danger: #93110a;
  --button-color-negative: #999;
  --button-color-sub: #1E1D1D;
  --button-color-line: #06c755;

  /* SNS Colors */
  --sns-color-facebook: #305097;
  --sns-color-twitter: #55acee;
  --sns-color-google: #dd4b39;
  --sns-color-line: #00C300;
  --sns-color-github: #333333;
  --sns-color-hatena: #00A2E4;
  --sns-color-pocket: #ED4156;

  /* Container Widths */
  --container-s: 780px;
  --container-m: 1100px;
  --container-l: 1600px;
  --contents-rightSideWidth: 300px;
  --layout-width-inner: 1024px;

  /* Z-Index */
  --layer-overlay: 10000;
  --layer-drawer: 8000;
  --layer-header: 5000;
}


* {
  box-sizing: border-box;
  background-clip: padding-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::selection {
  background: var(--main-color);
  color: #fff;
}

html {
  background: #fff;
  font-size: 62.5%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', application, 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: 'palt';
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #333;
  max-width: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
}

input::selection {
  background: var(--main-color);
  color: #fff;
}

input:focus {
  outline: none;
}

textarea {
  font-size: 16px;
}

input[type='button'],
input[type='submit'] {
  outline: none;
  cursor: pointer;
}

input[type='password'],
input[type='email'] {
  ime-mode: disabled;
}

textarea,
input[type='text'] {
  outline: none;
  resize: none;
}

input[type='text'],
input[type='password'],
input[type='email'],
select {
  font-size: 1.6rem;
}

input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  text-rendering: optimizeSpeed;
}

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

em,
strong {
  font-style: normal;
  font-weight: normal;
}

i {
  display: inline-block;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #333;
}

a img:hover {
  opacity: .7;
}

a:hover {
  color: var(--main-color);
}

aside {
  color: #333;
}

time {
  color: #666;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  object-fit: cover;
}

svg {
  display: inline-block;
  vertical-align: sub;
}

picture {
  display: block;
}

.p-firstview {
  width: 100vw;
  max-width: 1440px;
  min-width: 1100px;
  margin: auto;
  height: 480px;
  background: linear-gradient(110deg, #FBF7F2 67%, var(--main-color) 33%);
  overflow: hidden;
}

.p-firstview__wrapper {
  background: linear-gradient(110deg, #FBF7F2 67%, var(--main-color) 33%);
}

.p-firstview__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-firstview__image_wrapper {
  position: relative;
  width: 50%;
  overflow: hidden;
  padding-top: 580px;
}

.p-firstview__contents {
  position: relative;
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-firstview__heading {
  position: absolute;
  top: 15%;
  left: 0;
}

.p-firstview__medals {
  position: absolute;
  top: 50%;
  left: 0;
}

.p-firstview__character {
  position: absolute;
  bottom: 0;
  right: -130px;
}

.p-firstview__category,
.p-firstview__area {
  position: absolute;
  top: 8%;
  left: 10%;
  font-size: 6.5rem;
  letter-spacing: 4px;
  font-weight: bold;
  color: #3C2502;
}

.p-firstview__area {
  left: 65px;
  font-size: 5.6rem;
}

.p-firstview__category_image_wrapper {
  position: absolute;
  bottom: 0;
  left: 32%;
  transform: translateX(-50%);
  width: 275px;
  z-index: 1;
  line-height: 1;
  object-fit: contain;
}

.p-firstview__category_title {
  height: 100px;
  transform: translate(-10px, -10px);
}


/* _appeal.sass */
.p-appeal {
  width: 100%;
  position: relative;
}

.p-appeal__bg {
  width: 870px;
  height: 650px;
  background-color: #FBF7F2;
  border-radius: 0 0 0 30px;
}

/* _card.sass */
.c-card {
  width: 336px;
  border-radius: 20px;
  overflow: hidden;
}

.c-card__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-card__image_wrapper {
  width: 100%;
  padding-top: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
}

.c-card__body {
  background-color: #fff;
  padding: 25px 30px;
}

.c-card__underlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.07);
  width: 350px;
  height: 417px;
  border-radius: 20px;
}

.c-card__underlay .c-card {
  width: 312px;
  height: 410px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 20px;
}

.c-card__underlay_bottom {
  padding: 0 45px 45px;
}

.c-card__numbered {
  width: 280px;
  display: inline-block;
  overflow-wrap: wrap;
  position: relative;
}

.c-card__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border: 2px solid #000;
  font-size: 2rem;
  font-weight: bold;
  color: #3C2502;
  width: 89px;
  height: 89px;
  border-radius: 50%;
  z-index: 1;
}

.c-card-sp {
  width: 263px;
  height: 346px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.c-card-sp__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.c-card-sp__image_wrapper {
  width: 100%;
  padding-top: 177px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.c-card-sp__body {
  position: relative;
  height: 169px;
  background-color: #fff;
  padding: 20px 30px;
}

.c-card-sp__body_bottom {
  position: absolute;
  bottom: 0;
  padding-bottom: 20px;
  border-radius: 0 0 20px 20px;
}

.c-card-sp__underlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.07);
  width: 295px;
  height: 352px;
  border-radius: 20px;
  margin: auto;
}

.c-card-sp__underlay .c-card-sp {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-card-sp__underlay_bottom {
  padding: 24px;
  font-size: 1rem;
}

.c-card-sp__numbered {
  width: 280px;
  display: inline-block;
  overflow-wrap: wrap;
  position: relative;
}

.c-card-sp__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border: 2px solid #000;
  font-size: 2rem;
  font-weight: bold;
  color: #3C2502;
  width: 89px;
  height: 89px;
  border-radius: 50%;
  z-index: 1;
}

.c-card-sp__character_wrapper {
  position: relative;
  width: 32px;
  padding-top: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.c-card-sp__character {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* _carousel.sass */
.c-carousel,
.c-narrow_carousel {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.c-carousel__list {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
}

.c-carousel__item {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.c-carousel__prev,
.c-carousel__next {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.c-carousel__prev::before,
.c-carousel__next::before {
  content: '';
  position: absolute;
  border-bottom: solid 2px #3C2502;
  border-right: solid 2px #3C2502;
  width: 30%;
  height: 30%;
  top: 30%;
}

.c-carousel__prev {
  left: 1%;
}

.c-carousel__prev::before {
  left: 15px;
  top: 13px;
  transform: rotate(135deg);
}

.c-carousel__next {
  right: 1%;
}

.c-carousel__next::before {
  left: 10px;
  transform: rotate(315deg);
}

.c-carousel__nav {
  position: absolute;
  bottom: 2px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.c-carousel__nav>span {
  background: #666;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  width: 8px;
  height: 8px;
}

.c-carousel__nav>span.swiper-pagination-bullet-active {
  background: #eee;
  cursor: default;
  pointer-events: none;
}

/* _picture.sass */
.c-picture {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.c-picture__wrapper_xsmall,
.c-picture__wrapper_small,
.c-picture__wrapper_medium,
.c-picture__wrapper_large,
.c-picture__wrapper_llarge,
.c-picture__wrapper_xlarge {
  position: relative;
  overflow: hidden;
  background-color: #FBF7F2;
  flex-shrink: 0;
}

.c-picture__wrapper_xsmall {
  width: 64px;
  height: 0;
  padding-top: 64px;
}

.c-picture__wrapper_small {
  width: 116px;
  padding-top: 116px;
  border-radius: 16px;
}

.c-picture__wrapper_medium {
  width: 148px;
  padding-top: 148px;
  border-radius: 16px;
}

.c-picture__wrapper_large {
  width: 280px;
  padding-top: 212px;
  border-radius: 20px;
}

.c-picture__wrapper_llarge {
  width: 560px;
  padding-top: 394px;
  border-radius: 20px;
}

.c-picture__wrapper_xlarge {
  width: 770px;
  padding-top: 658px;
  border-radius: 24px;
}

.c-picture__wrapper--circle {
  border-radius: 50%;
}

.c-picture__wrapper_sp_xsmall,
.c-picture__wrapper_sp_small,
.c-picture__wrapper_sp_medium,
.c-picture__wrapper_sp_large,
.c-picture__wrapper_sp_llarge,
.c-picture__wrapper_sp_xlarge {
  position: relative;
  overflow: hidden;
  background-color: #FBF7F2;
  flex-shrink: 0;
}

.c-picture__wrapper_sp_xsmall {
  width: 10px;
  padding-top: 10px;
  border-radius: 10px;
}

.c-picture__wrapper_sp_small {
  width: 65px;
  padding-top: 65px;
  border-radius: 16px;
}

.c-picture__wrapper_sp_medium {
  flex-shrink: 0;
  width: 104px;
  padding-top: 104px;
  border-radius: 16px;
}

.c-picture__wrapper_sp_large {
  width: 280px;
  padding-top: 212px;
  border-radius: 20px;
}

.c-picture__wrapper_sp_llarge {
  width: 560px;
  padding-top: 394px;
  border-radius: 20px;
}

.c-picture__wrapper_sp_xlarge {
  width: 770px;
  padding-top: 658px;
  border-radius: 24px;
}

.c-picture__wrapper_sp--circle {
  border-radius: 50%;
}

/* _heading.sass */
.c-heading {
  text-align: center;
  font-size: 5.8rem;
}

.c-heading-sp {
  font-size: 2.6rem;
  font-weight: 600;
  color: #3C2502;
}

.c-heading--sub {
  font-size: 3.8rem;
}

/* _contents.sass (PC) */
.l-contents {
  margin: 15px auto 30px;
  width: 665px;
  /* 1100px - 300px - 135px */
  padding-right: 30px;
  flex: 1 0 0%;
}

.l-contents__heading {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 2.0rem;
  padding: 15px 0;
}

.l-contents__heading::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-image: linear-gradient(-45deg, rgba(139, 139, 139, .5) 25%, transparent 25%, transparent 50%, rgba(139, 139, 139, .5) 50%, rgba(139, 139, 139, .5) 75%, transparent 75%, transparent);
  background-size: 4px 4px;
}

.l-contents__heading::after {
  content: attr(data-subtitle)'';
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--main-color);
  margin-left: 5px;
  white-space: nowrap;
}

.l-contents__full {
  margin: auto;
  width: 1100px;
}

.l-contents__full--flex {
  display: flex;
  flex-wrap: wrap;
}

.l-contents__full--flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.l-contents__2col {
  width: calc(50% - 10px);
}

.l-contents__2col:nth-child(2n) {
  margin-left: 20px;
}

.l-contents__5col {
  width: calc(20% - 20px);
  margin-left: 25px;
}

.l-contents__5col:nth-child(n + 6) {
  margin-top: 25px;
}

.l-contents__5col:first-child {
  margin-left: 0;
}

.l-contents__5col:nth-child(5n + 1) {
  margin-left: 0;
}

/* _achievements.sass */
.p-achievements__heading {
  text-align: center;
  font-size: 3rem;
  color: #fff;
  background-color: var(--main-color);
  border-bottom: none;
  justify-content: center;
  padding: 30px;
  line-height: 1;
  position: relative;
}

.p-achievements__heading::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 18px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -17px;
  left: 50%;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.p-achievements__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.p-achievements__item {
  width: calc(50% - 25px);
}

.p-achievements__item:nth-of-type(2n) {
  margin-left: 50px;
}

.p-achievements__item_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.p-achievements__image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.p-achievements__image_wrapper {
  width: 100px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.p-achievements__category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #F5EEE3;
  position: relative;
  width: 33.3%;
  height: 45px;
}

.p-achievements__category_name {
  color: #3C2502;
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 15px;
  width: 160px;
}

.p-achievements__category_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #3C2502;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 2px;
  background: #3C2502;
}

.p-achievements__category_arrow::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #3C2502;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

.p-achievements__category_arrow_wrapper {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.p-achievements__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-achievements__icon_wrapper {
  width: 45px;
  padding-top: 45px;
  position: relative;
  overflow: hidden;
}

/* _area.sass */
.p-area {
  width: 100%;
  color: #3C2502;
  text-align: center;
}

/* _categories.sass */
.p-category {
  position: relative;
  display: flex;
  margin: 15px 0;
  font-size: 1.6rem;
}

.p-category__image {
  width: 220px;
  height: 150px;
  object-position: center;
}

.p-category__contents {
  position: relative;
  padding-left: 10px;
  width: 100%;
  flex: 1;
}

.p-category__elements {
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.p-category__card_top {
  width: calc(100%/3 - 17px);
  border-radius: 20px;
  background-color: #FBF7F2;
  box-shadow: 0px 6px 0px #E8C19F;
  padding-bottom: 18px;
}

.p-category__card_top:nth-child(n + 2) {
  margin-left: 25px;
}

.p-category__card {
  width: calc(100%/5 - 16px);
  border-radius: 20px;
  background-color: #FBF7F2;
  box-shadow: 0px 6px 0px #E8C19F;
  padding-bottom: 18px;
  margin-left: 20px;
  margin-top: 24px;
}

.p-category__card:nth-child(5n + 4) {
  margin-left: 0;
}

.p-category__card_image_wrapper {
  width: 136px;
  padding-top: 136px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.p-category__card_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-category__next {
  position: relative;
  color: #852C2F;
  font-size: 2.8rem;
}

.p-category__next::after {
  position: absolute;
  top: 60%;
  right: -20px;
  content: '';
  margin-right: 10px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #852C2F;
  border-top: 2px solid #852C2F;
  transform: rotate(45deg) translate(-50%, -50%);
}

div>.u-ta-center .p-category__next::after,
div.p-category__card .p-category__next::after,
div.p-category__card_top .p-category__next::after {
  display: none;
}

/* _step_annotation */
.c-step__annotation {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
}

/* _certificate.sass */
.p-certificate__card {
  width: 600px;
}

/* _columns.sass */
.p-columns {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.p-columns__bg {
  width: 910px;
  height: 878px;
  background-color: #FBF7F2;
  border-radius: 30px 0 0 0;
}

.p-columns__contents {
  display: flex;
  width: 100%;
}

/* _comment.sass */
.p-comment {
  width: 685px;
  border-bottom: 1px solid #F5EEE3;
  padding-bottom: 40px;
}

.p-comment__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #7D8F9B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
}

.p-comment__ratings {
  display: flex;
  justify-content: flex-start;
}

/* _cv.sass */
.p-cv {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  padding: 20px;
  width: max-content;
}

.p-cv__character {
  position: absolute;
  bottom: -30px;
  right: -70px;
  width: 147px;
  height: 174px;
}

.p-cv__tel {
  font-size: 2.8rem;
}

/* _cva.sass */
.p-cva {
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.p-cva__bg {
  width: 910px;
  height: 620px;
  background-color: #fff;
  border-radius: 30px 0 0 30px;
}

.p-cva__contents {
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}

.p-cva__mail,
.p-cva__line {
  display: inline-flex;
  color: #fff;
  font-weight: bold;
  font-size: 3.2rem;
  justify-content: center;
  align-items: center;
  width: 272px;
  border-radius: 20px;
  padding: 25px 20px;
  position: relative;
  letter-spacing: 0;
}

.p-cva__mail:hover,
.p-cva__line:hover {
  color: #fff;
}

.p-cva__mail::after,
.p-cva__line::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.p-cva__mail {
  background-color: #E18026;
  box-shadow: 0px 8px 0px #B75C08;
}

.p-cva__line {
  background-color: #06c755;
  box-shadow: 0px 8px 0px #049d43;
  height: auto;
  align-self: stretch;
}

.p-cva__image_wrapper {
  width: 100%;
  padding-top: 582px;
  position: relative;
  overflow: hidden;
}

.p-cva__image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-cva__heading {
  width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-cva__left {
  width: 50%;
  background-color: #fff;
  padding-bottom: 40px;
  border-radius: 0 60px 60px 0;
}

.p-cva__right {
  width: 50%;
}

.p-cva__tel_number {
  width: 560px;
  font-weight: bold;
  font-size: 6.8rem;
  line-height: 1;
  letter-spacing: 0;
  color: #418339;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-cva__tel_text {
  width: 560px;
  color: #3C2502;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: bold;
}

/* _entry.sass */
.p-entry {
  max-width: 770px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.p-entry__heading {
  color: #234872;
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid #234872;
  padding-bottom: 10px;
}

.p-entry__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.p-entry__step {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background-color: #234872;
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.p-entry__step--unfinished {
  background-color: #cecece;
}

.p-entry__step_number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-43%, -50%);
}

.p-entry__step_name {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-48%);
  color: #234872;
  font-size: 1.2rem;
  display: inline-block;
  min-width: 60px;
  text-align: center;
}

.p-entry__step_name--unfinished {
  color: #cecece;
}

.p-entry__step_line {
  width: 250px;
  height: 1px;
  background-color: #234872;
}

.p-entry__step_line--unfinished {
  background-color: #cecece;
}

.p-entry__step_wrapper {
  display: inline-block;
}

.p-entry__clinic_name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #234872;
}

.p-entry__form {
  border: 2px solid #234872;
  border-radius: 4px;
  padding: 25px;
}

.p-entry__form_label {
  font-weight: bold;
}

.p-entry__table {
  color: #333;
  overflow: hidden;
}

.p-entry__tr {
  border-bottom: 1px solid #ededed;
}

.p-entry__th {
  width: 220px;
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
}

.p-entry__td {
  padding: 20px 25px;
  vertical-align: middle;
  background-color: #fff;
}

.p-entry__2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
}

.p-entry__required {
  background-color: red;
  color: #fff;
  padding: 1px 5px;
  font-size: 1.6rem;
}

.p-entry__optional {
  background-color: #aab4b9;
  color: #234872;
  padding: 1px 5px;
  font-size: 1.6rem;
}

.p-entry__complete {
  font-size: 2rem;
  font-weight: bold;
}

.p-entry__submit {
  padding: 25px 0;
  width: 450px;
}

/* _eyecatch.sass */
.p-eyecatch {
  position: relative;
}

.p-eyecatch__man,
.p-eyecatch__woman,
.p-eyecatch__woman_smile {
  height: 340px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.p-eyecatch__man {
  background-image: url('images/standing_man.png');
}

.p-eyecatch__woman {
  background-image: url('images/woman_appraiser.png');
}

.p-eyecatch__fukidashi_left,
.p-eyecatch__fukidashi_right {
  position: absolute;
  width: 180px;
  height: 150px;
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #FBF7F2;
  border-radius: 50%;
  z-index: -1;
}

.p-eyecatch__fukidashi_left {
  top: 5%;
  right: 6%;
  transform: rotate(5deg);
}

.p-eyecatch__fukidashi_left::before {
  content: '';
  position: absolute;
  top: 83%;
  left: 3%;
  border: 18px solid transparent;
  border-top: 42px solid #FBF7F2;
  transform: rotate(26deg);
}

.p-eyecatch__fukidashi_right {
  top: 35%;
  left: -6%;
  transform: rotate(-5deg);
}

.p-eyecatch__fukidashi_right::before {
  content: '';
  position: absolute;
  top: 78%;
  right: 0;
  border: 18px solid transparent;
  border-top: 42px solid #FBF7F2;
  transform: rotate(-35deg);
}

.p-eyecatch__fukidashi_single {
  position: absolute;
  width: 180px;
  height: 150px;
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  top: 20%;
  right: 75px;
  transform: rotate(5deg);
}

.p-eyecatch__image_wrapper {
  position: relative;
  height: 320px;
}

.p-eyecatch__image {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.p-eyecatch__mt50negative {
  margin-top: -50px;
}

/* _items.sass */
.p-items__50on {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  border-radius: 10px;
  background-color: #d7fbfd;
  border: 3px solid #72cfd4;
  color: #72cfd4;
  cursor: pointer;
  margin-left: 10px;
}

.p-items__50on:first-of-type {
  margin-left: 0;
}

.p-items__heading {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 10px 0;
  padding: 8px 0 8px 12px;
  display: flex;
  align-items: center;
}

.p-items__heading::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: var(--main-color);
}

.p-items__initials {
  display: flex;
}

/* _knowhow.sass */
.p-knowhow {
  position: relative;
  padding-top: 70px;
  height: 330px;
  width: 450px;
  border-radius: 34px;
  background-color: #EBECED;
  letter-spacing: 2px;
  user-select: none;
}

.p-knowhow::before {
  content: '困った時はこちら！';
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 35px;
  border: 3px solid #EBECED;
  padding: 16px 26px;
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: center;
}

.p-knowhow__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-knowhow__image_wrapper {
  position: relative;
  width: 100%;
  padding-top: 335px;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
}

.p-knowhow__fukidashi_left,
.p-knowhow__fukidashi_right {
  position: absolute;
  width: 87px;
  height: 76px;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: var(--main-color);
  border-radius: 50%;
}

.p-knowhow__fukidashi_left {
  top: 50%;
  left: -7%;
  transform: rotate(-5deg);
}

.p-knowhow__fukidashi_left::before {
  content: '';
  position: absolute;
  top: 83%;
  right: 12%;
  border: 9px solid transparent;
  border-top: 16px solid var(--main-color);
  transform: rotate(-30deg);
}

.p-knowhow__fukidashi_right {
  top: 45%;
  right: -6%;
  transform: rotate(5deg);
}

.p-knowhow__fukidashi_right::before {
  content: '';
  position: absolute;
  top: 78%;
  left: 0;
  border: 9px solid transparent;
  border-top: 16px solid var(--main-color);
  transform: rotate(40deg);
}

/* _purchase.sass */
.p-purchase {
  height: 567px;
  width: 350px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.p-purchase__underlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.07);
  width: 100%;
  height: 417px;
  border-radius: 20px;
  padding: 32px 28px;
}

.p-purchase__card {
  width: 312px;
  height: 410px;
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 20px;
}

.p-purchase__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-purchase__image_wrapper {
  width: 100%;
  padding-top: 210px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
}

.p-purchase__body {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 21px 28px;
}

.p-purchase__comment {
  height: 44px;
  font-size: 1.6rem;
  color: #3C2502;
  font-weight: 600;
}

.p-purchase__name {
  font-weight: 600;
  height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 2.1rem;
  color: #3C2502;
}

.p-purchase__price {
  height: 55px;
  letter-spacing: -1px;
}

.p-purchase__note {
  font-family: 'Hiragino Sans', 'Yu Gothic', YuGothic, sans-serif;
  height: 96px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}

.p-achievement-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

/* _question.sass */
.p-question {
  height: 150px;
  padding: 18px 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
}

.p-question__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #3C2502;
  flex-shrink: 0;
}

#faq .p-question p {
  font-size: 15px !important;
}

#faq .l-contents__2col > p {
  font-size: 15px !important;
}

/* _reason.sass */
.p-reason__heading {
  font-size: 3.3rem;
  color: #3C2502;
  font-weight: 600;
  letter-spacing: 1px;
  width: 311px;
}

/* _reasons.sass */
.p-reasons {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
}

.p-reasons .c-card__numbered:nth-child(n + 3) {
  margin-top: 80px;
}

.p-reasons .c-card__numbered:nth-child(2n) {
  margin-left: 70px;
}

/* _review.sass */
.p-review {
  background-color: #FBF7F2;
  border-radius: 20px;
  padding: 36px 28px;
  width: 270px;
  height: 352px;
}

/* AreaTable Component */
.p-area-table {
  border: 2px solid #F5EEE3;
  width: 100%;
}

.p-area-table:nth-child(n+1) {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .p-area-table {
    width: 100%;
    max-width: 1040px;
    min-width: 685px;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-area-table {
    width: 100%;
  }
}

.p-area-table__heading {
  cursor: pointer;
  position: relative;
  text-align: left;
  color: #3C2502;
  background-color: #F5EEE3;
  padding: 24px 36px;
  font-weight: 700;
  font-size: 2rem;
  user-select: none;
}

@media screen and (max-width: 767px) {
  .p-area-table__heading {
    font-size: 1.4rem;
    height: 56px;
  }
}

.p-area-table__row {
  border-bottom: 2px solid #F5EEE3;
}

.p-area-table__row:last-child {
  border: none;
}

.p-area-table__data {
  font-size: 1.8rem;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}

.p-area-table__data:first-child {
  border-right: 2px solid #F5EEE3;
}

.p-area-table__data:nth-child(2n) {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-area-table__data {
    font-size: 1.4rem;
    padding: 20px 10px;
  }
}

.p-area-table__link {
  display: inline-block;
  width: calc(100%/7 - 11.5px);
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-left: 13px;
  margin-top: 8px;
  line-height: 1;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-area-table__link {
    width: calc(100%/3 - 10px);
    margin-left: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .p-area-table__link:nth-child(7n+1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-area-table__link:nth-child(3n+1) {
    margin-left: 0;
  }
}

.p-area-table__link--dummy {
  color: #333;
  text-decoration: none;
}

.p-area-table__switch {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-area-table__switch-minus {
  position: relative;
}

.p-area-table__switch-minus::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  content: '';
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #3C2502;
}

.p-area-table__switch-plus {
  position: relative;
}

.p-area-table__switch-plus::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background-color: #3C2502;
}

/* Visibility Toggle */
.p-area-table__body {
  display: none;
}

.p-area-table.is-open .p-area-table__body {
  display: table-row-group;
}

.p-area-table.is-open .p-area-table__switch-plus {
  display: none;
}


/* ==============================================
   UTILITY CLASSES
   ============================================== */

/* _background.sass */
.u-bc-base {
  background-color: #FBF7F2;
}

.u-bc-main {
  background-color: var(--main-color);
}

.u-bc-accent {
  background-color: var(--accent-color);
}

.u-bc-space {
  background-color: #FBF8F2;
}

.u-bc-black {
  background-color: #000;
}

.u-bc-richBlack {
  background-color: #333;
}

.u-bc-darkGray {
  background-color: #666;
}

.u-bc-gray {
  background-color: #8B8B8B;
}

.u-bc-lightGray {
  background-color: #eee;
}

.u-bc-white {
  background-color: #fff;
}

.u-bc-blue {
  background-color: #04a9a4;
}

.u-bc-orange {
  background-color: #ff8c00;
}

.u-bc-yellow {
  background-color: #f1e05a;
}

.u-bc-red {
  background-color: #f33;
}

.u-bc-brown {
  background-color: #461517;
}

.u-bc-green {
  background-color: #418339;
}

.u-bc-pink {
  background-color: #FFFCF8;
}

.u-bc-line {
  background-color: #06c755;
}

.u-bc-white-base {
  background-image: linear-gradient(90deg, #fff 50%, #FBF7F2 50%);
}

.u-bc-base-white {
  background-image: linear-gradient(90deg, #FBF7F2 50%, #fff 50%);
}

/* _border-radius.sass */
.u-br-xs {
  border-radius: 5px;
  overflow: hidden;
}

.u-br-s {
  border-radius: 10px;
  overflow: hidden;
}

.u-br-m {
  border-radius: 15px;
  overflow: hidden;
}

.u-br-l {
  border-radius: 20px;
  overflow: hidden;
}

.u-br-xl {
  border-radius: 25px;
  overflow: hidden;
}

/* _display.sass */
.u-display-block {
  display: block;
}

.u-display-flex {
  display: flex;
  align-items: flex-start;
}

.u-display-flex-stretch {
  display: flex;
  align-items: stretch;
}

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

.u-display-none {
  display: none;
}

/* _font.sass */
.u-fs-xxs {
  font-size: 0.8rem;
}

.u-fs-xs {
  font-size: 1.0rem;
}

.u-fs-s {
  font-size: 1.2rem;
}

.u-fs-sm {
  font-size: 1.4rem;
}

.u-fs-m {
  font-size: 1.6rem;
}

.u-fs-l {
  font-size: 1.8rem;
}

.u-fs-xl {
  font-size: 2.0rem;
}

.u-fs-xxl {
  font-size: 2.4rem;
}

.u-fs-xxxl {
  font-size: 2.6rem;
}

.u-fs-card {
  font-size: 2.2rem;
}

.u-fs-small-heading {
  font-size: 2.8rem;
}

.u-fs-medium-heading {
  font-size: 3.6rem;
}

.u-fs-middle-heading {
  font-size: 4.0rem;
}

.u-fs-sub-heading {
  font-size: 4.8rem;
}

.u-fs-heading {
  font-size: 5.8rem;
}

.u-fc-base {
  color: #3C2502;
}

.u-fc-main {
  color: var(--main-color);
}

.u-fc-accent {
  color: var(--accent-color);
}

.u-fc-black {
  color: #333;
}

.u-fc-darkGray {
  color: #666;
}

.u-fc-gray {
  color: #8B8B8B;
}

.u-fc-white {
  color: #fff;
}

.u-fc-red {
  color: #ea3033;
}

.u-fc-blue {
  color: #3664c9;
}

.u-fc-orange {
  color: #E29E37;
}

.u-fc-gold {
  color: #DCB769;
}

.u-fc-green {
  color: #418339;
}

.u-fc-azuki {
  color: #A3727E;
}

.u-fc-blown {
  color: #3C2502;
}

.u-fw-normal {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

.u-fw-black {
  font-weight: 900;
}

/* _margin.sass */
.u-mt-5 {
  margin-top: 5px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-mr-15 {
  margin-right: 15px;
}

.u-my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mb-25 {
  margin-bottom: 25px;
}

.u-ml-25 {
  margin-left: 25px;
}

.u-mr-25 {
  margin-right: 25px;
}

.u-my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-mb-35 {
  margin-bottom: 35px;
}

.u-ml-35 {
  margin-left: 35px;
}

.u-mr-35 {
  margin-right: 35px;
}

.u-my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-mb-45 {
  margin-bottom: 45px;
}

.u-ml-45 {
  margin-left: 45px;
}

.u-mr-45 {
  margin-right: 45px;
}

.u-my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.u-mt-55 {
  margin-top: 55px;
}

.u-mb-55 {
  margin-bottom: 55px;
}

.u-ml-55 {
  margin-left: 55px;
}

.u-mr-55 {
  margin-right: 55px;
}

.u-my-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-ml-60 {
  margin-left: 60px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-mt-65 {
  margin-top: 65px;
}

.u-mb-65 {
  margin-bottom: 65px;
}

.u-ml-65 {
  margin-left: 65px;
}

.u-mr-65 {
  margin-right: 65px;
}

.u-my-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-mr-70 {
  margin-right: 70px;
}

.u-my-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.u-mt-75 {
  margin-top: 75px;
}

.u-mb-75 {
  margin-bottom: 75px;
}

.u-ml-75 {
  margin-left: 75px;
}

.u-mr-75 {
  margin-right: 75px;
}

.u-my-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.u-mt-85 {
  margin-top: 85px;
}

.u-mb-85 {
  margin-bottom: 85px;
}

.u-ml-85 {
  margin-left: 85px;
}

.u-mr-85 {
  margin-right: 85px;
}

.u-my-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-ml-90 {
  margin-left: 90px;
}

.u-mr-90 {
  margin-right: 90px;
}

.u-my-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.u-mt-95 {
  margin-top: 95px;
}

.u-mb-95 {
  margin-bottom: 95px;
}

.u-ml-95 {
  margin-left: 95px;
}

.u-mr-95 {
  margin-right: 95px;
}

.u-my-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-ml-100 {
  margin-left: 100px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* _padding.sass */
.u-pt-5 {
  padding-top: 5px;
}

.u-pb-5 {
  padding-bottom: 5px;
}

.u-pl-5 {
  padding-left: 5px;
}

.u-pr-5 {
  padding-right: 5px;
}

.u-px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pb-10 {
  padding-bottom: 10px;
}

.u-pl-10 {
  padding-left: 10px;
}

.u-pr-10 {
  padding-right: 10px;
}

.u-px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.u-pt-15 {
  padding-top: 15px;
}

.u-pb-15 {
  padding-bottom: 15px;
}

.u-pl-15 {
  padding-left: 15px;
}

.u-pr-15 {
  padding-right: 15px;
}

.u-px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-pl-20 {
  padding-left: 20px;
}

.u-pr-20 {
  padding-right: 20px;
}

.u-px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.u-pt-25 {
  padding-top: 25px;
}

.u-pb-25 {
  padding-bottom: 25px;
}

.u-pl-25 {
  padding-left: 25px;
}

.u-pr-25 {
  padding-right: 25px;
}

.u-px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.u-pt-30 {
  padding-top: 30px;
}

.u-pb-30 {
  padding-bottom: 30px;
}

.u-pl-30 {
  padding-left: 30px;
}

.u-pr-30 {
  padding-right: 30px;
}

.u-px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.u-pt-35 {
  padding-top: 35px;
}

.u-pb-35 {
  padding-bottom: 35px;
}

.u-pl-35 {
  padding-left: 35px;
}

.u-pr-35 {
  padding-right: 35px;
}

.u-px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.u-pt-45 {
  padding-top: 45px;
}

.u-pb-45 {
  padding-bottom: 45px;
}

.u-pl-45 {
  padding-left: 45px;
}

.u-pr-45 {
  padding-right: 45px;
}

.u-px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.u-pt-50 {
  padding-top: 50px;
}

.u-pb-50 {
  padding-bottom: 50px;
}

.u-pl-50 {
  padding-left: 50px;
}

.u-pr-50 {
  padding-right: 50px;
}

.u-px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.u-pt-55 {
  padding-top: 55px;
}

.u-pb-55 {
  padding-bottom: 55px;
}

.u-pl-55 {
  padding-left: 55px;
}

.u-pr-55 {
  padding-right: 55px;
}

.u-px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pb-60 {
  padding-bottom: 60px;
}

.u-pl-60 {
  padding-left: 60px;
}

.u-pr-60 {
  padding-right: 60px;
}

.u-px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.u-pt-65 {
  padding-top: 65px;
}

.u-pb-65 {
  padding-bottom: 65px;
}

.u-pl-65 {
  padding-left: 65px;
}

.u-pr-65 {
  padding-right: 65px;
}

.u-px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.u-pt-70 {
  padding-top: 70px;
}

.u-pb-70 {
  padding-bottom: 70px;
}

.u-pl-70 {
  padding-left: 70px;
}

.u-pr-70 {
  padding-right: 70px;
}

.u-px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.u-pt-75 {
  padding-top: 75px;
}

.u-pb-75 {
  padding-bottom: 75px;
}

.u-pl-75 {
  padding-left: 75px;
}

.u-pr-75 {
  padding-right: 75px;
}

.u-px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.u-pt-80 {
  padding-top: 80px;
}

.u-pb-80 {
  padding-bottom: 80px;
}

.u-pl-80 {
  padding-left: 80px;
}

.u-pr-80 {
  padding-right: 80px;
}

.u-px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.u-pt-85 {
  padding-top: 85px;
}

.u-pb-85 {
  padding-bottom: 85px;
}

.u-pl-85 {
  padding-left: 85px;
}

.u-pr-85 {
  padding-right: 85px;
}

.u-px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.u-pt-90 {
  padding-top: 90px;
}

.u-pb-90 {
  padding-bottom: 90px;
}

.u-pl-90 {
  padding-left: 90px;
}

.u-pr-90 {
  padding-right: 90px;
}

.u-px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.u-pt-95 {
  padding-top: 95px;
}

.u-pb-95 {
  padding-bottom: 95px;
}

.u-pl-95 {
  padding-left: 95px;
}

.u-pr-95 {
  padding-right: 95px;
}

.u-px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.u-pt-100 {
  padding-top: 100px;
}

.u-pb-100 {
  padding-bottom: 100px;
}

.u-pl-100 {
  padding-left: 100px;
}

.u-pr-100 {
  padding-right: 100px;
}

.u-px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

/* _position.sass */
.u-position-relative {
  position: relative;
}

.u-position-absolute {
  position: absolute;
}

.u-position-static {
  position: static;
}

.u-position-fixed {
  position: fixed;
}

.u-position-sticky {
  position: sticky;
}

/* _svg.sass */
.u-svg-main {
  fill: var(--main-color);
}

.u-svg-base {
  fill: #F5EEE3;
}

.u-svg-black {
  fill: #1E1D1D;
}

.u-svg-darkGray {
  fill: #666;
}

.u-svg-gray {
  fill: #bbb;
}

.u-svg-white {
  fill: #fff;
}

.u-svg-gold {
  fill: #DCB769;
}

.u-svg-facebook {
  fill: #305097;
}

.u-svg-twitter {
  fill: #55acee;
}

.u-svg-google {
  fill: #dd4b39;
}

.u-svg-line {
  fill: #00C300;
}

.u-svg-github {
  fill: #333333;
}

.u-svg-hatena {
  fill: #00A2E4;
}

.u-svg-pocket {
  fill: #ED4156;
}

.u-svg-xs {
  height: 18px;
  width: 18px;
}

.u-svg-s {
  height: 21px;
  width: 21px;
}

.u-svg-m {
  height: 24px;
  width: 24px;
}

.u-svg-l {
  height: 34px;
  width: 34px;
}

.u-svg-ll {
  height: 44px;
  width: 44px;
}

.u-svg-xl {
  height: 75px;
  width: 75px;
}

/* _text.sass */
.u-ta-left {
  text-align: left;
}

.u-ta-right {
  text-align: right;
}

.u-ta-center {
  text-align: center;
}

.u-va-top {
  vertical-align: top;
}

.u-va-middle {
  vertical-align: middle;
}

.u-va-bottom {
  vertical-align: bottom;
}

.u-td-underline {
  text-decoration: underline;
}

.u-td-gradient {
  background-image: linear-gradient(120deg, #ff6 0%, #fceabb 100%);
  background-repeat: no-repeat;
  background-size: 100% .4em;
  background-position: 0 90%;
}

.u-td-dots {
  background-image: radial-gradient(circle at 60%, #ea3033 18%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  padding-top: .1em;
}

/* ==============================================
   HEADER (PC)
   ============================================== */

.l-header {
  background-color: #fff;
  padding-bottom: 20px;
}

.l-header__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-width: 780px;
  margin: 0 auto;
  padding: 20px 40px;
}

.l-header__tel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 40px;
}

.l-header__contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}

.l-header__mail,
.l-header__line {
  padding: 10px 0;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-header__mail {
  background-color: var(--main-color);
  box-shadow: 0px 8px 0px #B75C08;
  width: 160px;
}

.l-header__line {
  background-color: #06c755;
  box-shadow: 0px 8px 0px #049d43;
  width: 150px;
}

.l-header__logo_wrapper {
  width: 280px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__title {
  display: flex;
  max-width: 300px;
  align-items: center;
  margin-left: 10px;
  font-size: 2.4rem;
  color: #666;
  font-weight: bold;
}

.l-header__menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.l-header__menu_item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.l-header__search {
  width: 300px;
  position: relative;
}

.l-header__searchText {
  display: inline-block;
  padding: 10px 40px 10px 20px;
  border: 1px solid #FBF7F2;
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #FBF7F2;
  transition: all .3s ease;
}

.l-header__searchText::placeholder {
  color: #8B8B8B;
}

.l-header__searchText:focus {
  outline: none;
  border: solid 1px #eee;
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.28);
}

.l-header__searchButton {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  right: 5px;
  top: 7px;
  outline: none;
  border: none;
  cursor: pointer;
}

.l-header__snsItem {
  padding: 10px;
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 50%;
  transition: all .3s ease;
  background-color: #FBF7F2;
}

.l-header__snsItem:hover {
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.28);
}

.l-header__snsItem--facebook svg {
  fill: #305097;
}

.l-header__snsItem--twitter svg {
  fill: #55acee;
}

.l-header__userList {
  font-size: 0;
}

.l-header__userList li {
  display: inline-block;
  padding: 0;
}

.l-header__userList li:first-child {
  margin-left: 10px;
}

.l-header__userList li:hover {
  opacity: .8;
}

.l-header__userItem {
  width: 70px;
  height: 42px;
  display: block;
  text-align: center;
  transition: all .3s ease;
}

.l-header__userLabel {
  font-size: 1.2rem;
  color: #666;
}

.l-header__profileImage {
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 50%;
  transition: all .3s ease;
  background-color: #FBF7F2;
}

.l-header__profileImage:hover {
  box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.28);
}

.l-header__buttons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5000;
  display: flex;
}

.l-header__buttons_tel {
  background-color: #418339;
  color: #fff;
  display: flex;
  padding: 24px 48px;
  border-radius: 0 0 0 40px;
}

.l-header__buttons_mail {
  background-color: #FBF7F2;
  color: var(--main-color);
  display: flex;
  padding: 24px 48px;
}

.l-header__tel_number {
  font-size: 3.3rem;
  color: #418339;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}

.l-header__global_navigation {
  display: flex;
  flex-wrap: wrap;
}

/* ==============================================
   FOOTER (PC)
   ============================================== */

.l-footer {
  background-color: #F5EEE3;
  color: #666;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  max-width: 1100px;
  min-width: 780px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.l-footer__cta {
  flex: 0 0 360px;
  min-width: 0;
  margin-left: 20px;
}

.l-footer__cta .c-btn-main,
.l-footer__cta .c-btn-line {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-left: 0 !important;
}

.l-footer__menu {
  flex: 1 1 0;
  min-width: 0;
}

.l-footer__description {
  text-align: left;
  margin-top: 20px;
  font-size: 1.2rem;
}

.l-footer__lisence {
  margin: 20px auto 10px;
  font-size: 1.0rem;
}

.l-footer__list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.l-footer__item {
  width: calc(50% - 10px);
  font-size: 1.6rem;
  color: #333;
}

.l-footer__item:nth-child(n + 3) {
  margin-top: 15px;
}

.l-footer__item:nth-child(2n) {
  margin-left: 20px;
}

.l-footer__item a,
.l-footer__item span {
  color: #333;
  font-size: 1.6rem;
  white-space: nowrap;
}

.l-footer__item a:hover {
  text-decoration: underline;
}

.l-footer__snsItem {
  width: 42px;
  height: 42px;
  display: inline-block;
  background-color: #fff;
  transition: all .3s ease;
  border-radius: 21px;
}

.l-footer__snsItem+.l-footer__snsItem {
  margin-left: 10px;
}

.l-footer__snsItem svg {
  transition: all ease .3s;
}

.l-footer__snsItem svg:hover {
  opacity: .8;
}

.l-footer__snsItem a {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.l-footer__bottom {
  background-color: #F5EEE3;
  padding-top: 20px;
}

/* ==============================================
   BUTTONS
   ============================================== */

.c-btn,
.c-btn-main,
.c-btn-line,
.c-btn-sub {
  position: relative;
  transition: all .2s ease-out;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  background-clip: border-box;
  cursor: pointer;
}

.c-btn:hover,
.c-btn-main:hover,
.c-btn-line:hover {
  color: #fff;
  opacity: .8;
}

.c-btn-main {
  background-color: var(--main-color);
  box-shadow: 0 6px 0 #B75C25;
}

.c-btn-line {
  background-color: #06c755;
  box-shadow: 0px 6px 0px #049d43;
  text-align: center;
}

.c-btn-line:hover {
  background-color: #28d968;
}

.c-btn-sub {
  background-color: transparent;
  color: #1E1D1D;
  font-weight: bold;
  border: 2px solid #1E1D1D;
  padding: 25px 50px;
  border-radius: 40px;
}

.c-btn-sub:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  font-weight: bold;
}

.c-btn__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-btn-arrow {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: currentColor;
}

.c-btn-arrow::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
/* ============================================================
   SP STYLES (max-width: 767px)
   Based directly on Rails SP SASS files
   ============================================================ */

/* PC時はSP専用要素を非表示 */
@media screen and (min-width: 768px) {
  .sp-only { display: none !important; }
  .l-header__btns { display: none !important; }
  .p-float-btns { display: none !important; }
  .p-cta-sp { display: none !important; }
}

@media screen and (max-width: 767px) {

  /* ---- SP時はPC専用要素を非表示 ---- */
  .pc-only { display: none !important; }

  /* ---- Header ---- */
  /* SP時はl-header全体をfixedにしてスクロール追従 */
  .l-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 4000;
    background-color: #FBF7F2;
  }
  /* PC版のヘッダー要素を非表示 */
  .l-header__tel {
    display: none !important;
  }
  .l-header__inner:nth-child(2) {
    display: none !important;
  }
  /* SP版のl-header__innerはロゴのみ */
  .l-header__inner {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .l-header__inner:first-child {
    padding-bottom: 0;
  }
  .l-header__inner:first-child h1 img {
    width: 149px;
    height: auto;
  }
  /* ---- SP用ヘッダーボタン群 (l-header__btns) ---- */
  .l-header__btns {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    height: 62px;
    background-color: #F5EEE3;
    border-radius: 0 0 0 20px;
    z-index: 5000;
  }
  .l-header__btn_left,
  .l-header__btn_center,
  .l-header__btn_right {
    padding: 10px 0;
    width: 68px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
  }
  .l-header__btn_left {
    background-color: #fff;
    border-left: 2px solid #F5EEE3;
    border-bottom: 2px solid #F5EEE3;
    border-radius: 0 0 0 20px;
    padding-left: 10px;
  }
  .l-header__btn_center {
    background-color: #fff;
    border-bottom: 2px solid #F5EEE3;
  }
  .l-header__btn_right {
    background: #F5EEE3;
    width: 65px;
    border-bottom: 2px solid #F5EEE3;
    position: relative;
    cursor: pointer;
  }
  .l-header__btn_txt {
    font-size: 0.8rem;
    color: #3C2502;
    font-weight: bold;
    letter-spacing: 0;
  }
  .l-header__menu_trigger {
    display: none;
  }
  /* ハンバーガーボタン */
  .l-header__menu_btn {
    display: flex;
    width: 60px;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: #F5EEE3;
    cursor: pointer;
    position: relative;
  }
  .l-header__menu_btn span,
  .l-header__menu_btn span::before,
  .l-header__menu_btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #3C2502;
    position: absolute;
  }
  .l-header__menu_btn span::before {
    bottom: 8px;
  }
  .l-header__menu_btn span::after {
    top: 8px;
  }
  /* ハンバーガー → × アニメーション */
  #menu_trigger:checked ~ .l-header__btn_right .l-header__menu_btn span {
    background: rgba(255,255,255,0);
  }
  #menu_trigger:checked ~ .l-header__btn_right .l-header__menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu_trigger:checked ~ .l-header__btn_right .l-header__menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* ---- ドロワーメニュー ---- */
  .l-header__drawer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 60px;
    left: 100%;
    z-index: 8000;
    background-color: #fff;
    transition: all 0.5s;
    overflow: scroll;
  }
  #menu_trigger:checked ~ .l-header__drawer {
    left: 0;
  }
  .l-header__drawer_inner {
    padding: 0 20px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
  }
  .l-header__drawer_item {
    position: relative;
    border-bottom: 1px solid #F5EEE3;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    color: #3C2502;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
  }
  .l-header__drawer_item img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .l-header__drawer_item_arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-header__drawer_item_arrow span {
    position: relative;
    width: 18px;
    height: 2px;
    background-color: #3C2502;
    border-radius: 2px;
  }
  .l-header__drawer_item_arrow span::before {
    content: '';
    position: absolute;
    top: -2px;
    right: 2px;
    width: 1px;
    height: 9px;
    background-color: #3C2502;
    border-top: 1px solid #3C2502;
    border-right: 1px solid #3C2502;
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 2px;
  }
  .l-header__drawer_item_arrow span::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 2px;
    width: 1px;
    height: 9px;
    background-color: #3C2502;
    border-top: 1px solid #3C2502;
    border-right: 1px solid #3C2502;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 2px;
  }
  /* ドロワーCTA */
  .l-header__drawer_cta {
    background-color: #FBF7F2;
    padding: 20px 16px;
  }
  .l-header__drawer_cta_inner {
    position: relative;
    padding: 40px 16px;
    background-color: #fff;
    border-radius: 20px;
    width: 327px;
    margin: auto;
    box-sizing: border-box;
  }
  .l-header__drawer_cta_image_wrapper {
    position: relative;
    height: auto;
    width: 100%;
    margin: 0;
    overflow: visible;
  }
  .l-header__drawer_cta_heading {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  /* ボタン共通 */
  .c-btn-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
  }
  .c-btn--sp {
    margin-top: 12px;
    position: relative;
  }
  .c-btn--arrow::after {
    position: absolute;
    top: 50%;
    right: 15px;
    content: '';
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg) translateY(-50%);
  }
  .c-btn-green {
    background-color: #037D37;
    box-shadow: 0 6px 0 #2A5926;
  }
  .c-btn-line-sp {
    background-color: #06c755;
    box-shadow: 0px 6px 0px #059540;
    text-align: center;
  }
  .c-btn-line { background: #06c755; }
  .u-mt-20 { margin-top: 20px; }

  /* ---- Float buttons (画面下部固定) ---- */
  /* .p-float-btns は sp-only クラスで SP のみ表示 */
  .p-float-btns {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 7000;
    display: flex;
    border-top: 2px solid #eee;
  }
  .p-float-btns__tel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    background-color: #f5eee3;
    padding: 8px 10px;
    text-align: center;
    height: auto;
    border-bottom: 3px solid #d9cab0;
    text-decoration: none;
  }
  .p-float-btns__tel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 2px;
  }
  .p-float-btns__tel-icon {
    flex-shrink: 0;
  }
  .p-float-btns__tel-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #3C2502;
    display: block;
    line-height: 1;
    letter-spacing: 0;
  }
  .p-float-btns__tel-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .p-float-btns__number {
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0;
    color: #3C2502;
    line-height: 1.2;
  }
  .p-float-btns__number-sub {
    font-size: 1.0rem;
    color: #3C2502;
  }
  .p-float-btns__mail {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E18026;
    height: auto;
    font-size: 1.0rem;
    letter-spacing: 0;
    width: 78px;
    border-bottom: 3px solid #b35a0d;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  .p-float-btns__line {
    padding: 5px;
    display: flex;
    font-size: 1.0rem;
    letter-spacing: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #06c755;
    height: auto;
    width: 78px;
    border-bottom: 3px solid #04923e;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }

  /* ---- Main ---- */
  .l-main {
    min-height: 450px;
  }

  /* ---- Firstview SP ---- */
  /* SP用ファーストビュー (.p-firstview.sp-only) を表示 */
  .p-firstview.sp-only {
    display: block;
  }
  /* PC用ファーストビューラッパーを非表示 */
  .p-firstview__wrapper {
    display: none !important;
  }
  /* SP版のp-firstviewスタイル（Rails SP _firstview.sass準拠） */
  .p-firstview.sp-only {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 360px;
    background: linear-gradient(120deg, #FBF7F2 70%, #E18026 70%);
    overflow: hidden;
  }
  .p-firstview.sp-only .p-firstview__contents {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  /* SP版 firstview 内の画像スタイル */
  .p-firstview.sp-only .p-firstview__heading {
    /* sp_firstview.webp の画像 */
    display: block;
    height: 150px;
    width: auto;
  }
  .p-firstview.sp-only .p-firstview__medals {
    position: absolute;
    top: 72%;
    left: 5%;
    z-index: 10;
    width: 264px;
  }
  .p-firstview.sp-only .p-firstview__character {
    position: absolute;
    bottom: 0;
    right: -25px;
    z-index: 0;
    height: 300px;
  }

  /* ---- 全セクション共通: 固定幅をSP時に100%へ ---- */
  .l-contents__full {
    width: 100% !important;
    box-sizing: border-box;
  }
  .l-contents__2col {
    width: 100% !important;
    box-sizing: border-box;
  }
  .l-contents__2col:nth-child(2n) {
    margin-left: 0 !important;
  }

  /* ---- Appeal SP ---- */
  /* SP用アピールセクション（Rails _appeal.sass準拠） */
  .p-appeal.sp-only {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: flex-end;
  }
  .p-appeal__bg {
    position: relative;
    margin-left: auto;
    background-color: #F7F5F1;
    width: 80%;
    border-radius: 80px 0 0 80px;
    height: 590px;
  }
  .p-appeal__contents {
    position: absolute;
    top: 0;
    left: -70px;
    padding: 0 10px;
    margin: auto;
  }
  .c-heading-sp {
    font-size: 2.6rem;
    font-weight: 600;
    color: #3C2502;
  }
  .c-heading-sp .u-fc-main {
    color: #E18026;
  }
  /* SP版のpicture wrapper (104x104px, 16px radius) */
  .c-picture__wrapper_sp_medium {
    position: relative;
    overflow: hidden;
    background-color: #FBF7F2;
    flex-shrink: 0;
    width: 104px;
    padding-top: 104px;
    border-radius: 16px;
  }
  .c-picture__wrapper_sp_medium .c-picture {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  /* アピール円番号 */
  .p-appeal__circle {
    border: 1px solid #3C2502;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3C2502;
    font-size: 8px;
    line-height: 1;
    margin-bottom: 5px;
  }
  /* アピール flex layout */
  .p-appeal.sp-only .u-display-flex {
    display: flex;
  }
  .p-appeal.sp-only .u-mt-30 {
    margin-top: 30px;
  }
  .p-appeal.sp-only .u-ml-25 {
    margin-left: 25px;
  }
  /* u-fs-card = 2.2rem */
  .u-fs-card {
    font-size: 2.2rem;
  }
  /* PC版appealを非表示 */
  .l-contents__full.pc-only { display: none !important; }

  /* ---- Category SP ---- */
  #category {
    overflow-x: hidden;
  }
  #category h2.c-heading {
    font-size: 5.6vw;
    text-align: center;
    line-height: 1.35;
    padding: 36px 20px 0;
  }
  #category h2.c-heading p {
    font-size: 1.2rem;
    margin-top: 8px;
    text-align: center;
  }
  #category .p-category__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 12px 10px;
  }
  #category .p-category__cards > .p-category__card,
  #category .p-category__cards > .p-category__card_wrapper {
    margin-top: 30px !important;
  }
  #category .p-category__card {
    margin-top: 0 !important;
    margin-left: 0 !important;
    border-radius: 20px;
    background-color: #f5f0ea;
    box-shadow: 0 6px 0 #e3be98;
    overflow: visible;
  }
  #category .p-category__card .u-ta-center {
    margin-top: 0 !important;
  }
  #category .p-category__card--top {
    width: 100%;
    padding: 10px 0 18px;
    overflow: hidden;
  }
  #category .p-category__card--second {
    width: calc((100% - 10px) / 2);
    padding: 10px 0 14px;
    margin-top: 0 !important;
    margin-left: 0 !important;
    overflow: hidden;
  }
  #category .p-category__card--top .p-category__card_image_wrapper,
  #category .p-category__card--second .p-category__card_image_wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    padding-top: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
  }
  #category .p-category__card--top .p-category__card_image {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 66%;
    max-height: 190px;
    height: auto;
  }
  #category .p-category__card--second .p-category__card_image {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 70%;
    max-height: 110px;
    height: auto;
  }
  #category .p-category__card_name {
    display: inline-block;
    color: #7b2f2f;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.1;
  }
  #category .p-category__card--top .p-category__card_name {
    font-size: clamp(2.8rem, 8vw, 4.3rem);
  }
  #category .p-category__card--second .p-category__card_name {
    font-size: clamp(2.1rem, 6.3vw, 3.2rem);
  }
  #category .p-category__card_wrapper {
    display: block;
    width: calc((100% - 20px) / 3);
    text-decoration: none;
  }
  #category .p-category__card_wrapper .p-category__card {
    width: 100%;
    padding: 0;
    margin-top: 0 !important;
    border-radius: 18px;
  }
  #category .p-category__card_image_wrapper_small {
    position: relative;
    width: 100%;
    padding-top: 78%;
    border-radius: 18px;
    overflow: hidden;
  }
  #category .p-category__card_image_small {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: 82%;
    max-height: 82%;
    transform: translate(-50%, -50%);
  }
  #category .p-category__card_name_small {
    margin-top: 8px;
    color: #3c2502;
    font-size: clamp(1.6rem, 4.1vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    word-break: keep-all;
  }
  #category .p-category__card_name_small span {
    display: inline;
  }
  /* ---- Category eyecatch SP ---- */
  #category .p-category__eyecatch_sp_wrap {
    padding: 0 12px 8px;
  }
  #category .p-category__eyecatch_sp {
    position: relative;
    width: 100%;
    min-height: 210px;
  }
  #category .p-category__eyecatch_sp img.p-eyecatch__woman {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 0 0 auto;
    background: none;
  }
  #category .p-category__eyecatch_sp .p-eyecatch__fukidashi_right {
    position: absolute;
    top: 50px;
    left: 0;
    transform: rotate(-5deg);
    width: 125px;
    height: 100px;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #FBF7F2;
    border-radius: 50%;
    z-index: -1;
  }

  /* ---- Achievement SP ---- */
  #achievement h2.c-heading {
    font-size: 2.4rem;
    line-height: 1.5;
    padding-top: 30px !important;
  }
  #achievement h2.c-heading p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 10px;
  }
  #achievement .p-achievement-cards {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 16px;
  }
  #achievement .p-achievement-cards::-webkit-scrollbar {
    display: none;
  }
  #achievement .p-achievement-cards__item {
    flex: 0 0 88%;
    margin: 0 !important;
    scroll-snap-align: center;
  }
  #achievement .p-purchase {
    margin: 0 auto !important;
    width: 100%;
    max-width: none;
  }

  /* ---- Area SP ---- */
  #area {
    overflow-x: hidden;
  }
  #area h2.u-ta-center img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
  #area .l-contents__full--flex {
    flex-direction: column;
    padding: 0 10px;
  }
  #area .p-area {
    width: 100% !important;
    margin: 0 !important;
  }
  #area .p-area-table {
    width: 100% !important;
  }

  /* ---- CVA → SP CTA ---- */
  .p-cva { display: none; }
  .p-cta-sp { display: block; }

  /* ---- Certificate SP ---- */
  .p-certificate__card { width: 100% !important; height: auto; }
  .c-step__annotation { font-size: 1.1rem; line-height: 1.8; }

  /* ---- FAQ SP ---- */
  #faq {
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
  }
  #faq h2.u-fs-sub-heading {
    font-size: 2.2rem;
    text-align: center;
  }
  #faq .l-contents__full--flex {
    flex-direction: column;
  }
  #faq .l-contents__2col {
    width: 100% !important;
  }
  #faq .p-question {
    height: auto;
  }

  /* ---- Footer SP (Rails _footer.sass準拠) ---- */
  .l-footer {
    background-color: #F5EEE3;
    padding-top: 0 !important;
    overflow-x: hidden;
  }
  .l-footer__inner {
    text-align: center;
    padding: 30px 3.8% !important;
    width: 320px !important;
    margin: auto !important;
    box-sizing: border-box;
    min-width: 0 !important;
    max-width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer__cta { display: none; }
  .l-footer__menu {
    width: 100% !important;
    flex: none !important;
    min-width: 0 !important;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .l-footer__inner h2 img { width: 149px; height: auto; }
  .l-footer__list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .l-footer__item {
    text-align: left;
    position: relative;
    line-height: 40px;
    width: 50% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
  }
  .l-footer__item a {
    color: #3C2502;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .l-footer__bottom {
    background-color: #F5EEE3;
    color: #3C2502;
    text-align: center;
    padding: 17px 0;
    font-size: 1.0rem;
    padding-bottom: 100px;
  }
}
