:root {
  --font-root: "Noto Sans JP", sans-serif;
  --font-barlow: "Barlow", sans-serif;
  --font-barlow-semi-condensed: "Barlow Semi Condensed", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --line-height: 1.5625;
  --font-weight-root: 400;
  --font-size-root: 10px;
  --font-size: 1.6rem;
  --font-size-h1: 2.4rem;
  --font-size-h2: 2.2rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.8rem;
  --font-size-h5: 1.6rem;
  --font-size-h6: 1.4rem;
  --color-primary: #E25575;
  --color-link: #E25575;
  --color-link-hover: #5597E2;
  --color-pink: #E76F8E;
  --color-pink-light: #FEB8C8;
  --color-pink-pastel: #FFEEEE;
  --color-blue: #5597E2;
  --color-blue-light: #AACAEE;
  --color-blue-pastel: #E5F0FB;
  --color-grey: #878787;
  --color-border: #ddd;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #707070;
  --bg-footer: #f8f8f8;
  --bg-root: #fff;
  --bg-hover: #5597E2;
  --color-root: #222;
  --color-hover: #5597E2;
  --inner-width: 1220px;
  --gutter-width: 20px;
}

@media only screen and (max-width: 768px) {
  :root {
    --gutter-width: 15px;
  }
}
/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles
        1-4. Text styles
        1-5. List styles
        1-6. CSS3 common styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
iframe {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt0,
.mv0,
.ma0 {
  margin-top: 0 !important;
}

.mr0,
.mh0,
.ma0 {
  margin-right: 0 !important;
}

.mb0,
.mv0,
.ma0 {
  margin-bottom: 0 !important;
}

.ml0,
.mh0,
.ma0 {
  margin-left: 0 !important;
}

.pt0,
.pv0,
.pa0 {
  padding-top: 0 !important;
}

.pr0,
.ph0,
.pa0 {
  padding-right: 0 !important;
}

.pb0,
.pv0,
.pa0 {
  padding-bottom: 0 !important;
}

.pl0,
.ph0,
.pa0 {
  padding-left: 0 !important;
}

.mt5,
.mv5,
.ma5 {
  margin-top: 5px !important;
}

.mr5,
.mh5,
.ma5 {
  margin-right: 5px !important;
}

.mb5,
.mv5,
.ma5 {
  margin-bottom: 5px !important;
}

.ml5,
.mh5,
.ma5 {
  margin-left: 5px !important;
}

.pt5,
.pv5,
.pa5 {
  padding-top: 5px !important;
}

.pr5,
.ph5,
.pa5 {
  padding-right: 5px !important;
}

.pb5,
.pv5,
.pa5 {
  padding-bottom: 5px !important;
}

.pl5,
.ph5,
.pa5 {
  padding-left: 5px !important;
}

.mt10,
.mv10,
.ma10 {
  margin-top: 10px !important;
}

.mr10,
.mh10,
.ma10 {
  margin-right: 10px !important;
}

.mb10,
.mv10,
.ma10 {
  margin-bottom: 10px !important;
}

.ml10,
.mh10,
.ma10 {
  margin-left: 10px !important;
}

.pt10,
.pv10,
.pa10 {
  padding-top: 10px !important;
}

.pr10,
.ph10,
.pa10 {
  padding-right: 10px !important;
}

.pb10,
.pv10,
.pa10 {
  padding-bottom: 10px !important;
}

.pl10,
.ph10,
.pa10 {
  padding-left: 10px !important;
}

.mt20,
.mv20,
.ma20 {
  margin-top: 20px !important;
}

.mr20,
.mh20,
.ma20 {
  margin-right: 20px !important;
}

.mb20,
.mv20,
.ma20 {
  margin-bottom: 20px !important;
}

.ml20,
.mh20,
.ma20 {
  margin-left: 20px !important;
}

.pt20,
.pv20,
.pa20 {
  padding-top: 20px !important;
}

.pr20,
.ph20,
.pa20 {
  padding-right: 20px !important;
}

.pb20,
.pv20,
.pa20 {
  padding-bottom: 20px !important;
}

.pl20,
.ph20,
.pa20 {
  padding-left: 20px !important;
}

.mt30,
.mv30,
.ma30 {
  margin-top: 30px !important;
}

.mr30,
.mh30,
.ma30 {
  margin-right: 30px !important;
}

.mb30,
.mv30,
.ma30 {
  margin-bottom: 30px !important;
}

.ml30,
.mh30,
.ma30 {
  margin-left: 30px !important;
}

.pt30,
.pv30,
.pa30 {
  padding-top: 30px !important;
}

.pr30,
.ph30,
.pa30 {
  padding-right: 30px !important;
}

.pb30,
.pv30,
.pa30 {
  padding-bottom: 30px !important;
}

.pl30,
.ph30,
.pa30 {
  padding-left: 30px !important;
}

.mt40,
.mv40,
.ma40 {
  margin-top: 40px !important;
}

.mr40,
.mh40,
.ma40 {
  margin-right: 40px !important;
}

.mb40,
.mv40,
.ma40 {
  margin-bottom: 40px !important;
}

.ml40,
.mh40,
.ma40 {
  margin-left: 40px !important;
}

.pt40,
.pv40,
.pa40 {
  padding-top: 40px !important;
}

.pr40,
.ph40,
.pa40 {
  padding-right: 40px !important;
}

.pb40,
.pv40,
.pa40 {
  padding-bottom: 40px !important;
}

.pl40,
.ph40,
.pa40 {
  padding-left: 40px !important;
}

.bt0,
.ba0 {
  border-top: none !important;
}

.br0,
.ba0 {
  border-right: none !important;
}

.bb0,
.ba0 {
  border-bottom: none !important;
}

.bl0,
.ba0 {
  border-left: none !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.underline {
  text-decoration: underline !important;
}

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--bg-root);
  font-size: var(--font-size-root);
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  color: var(--color-root);
  font-weight: normal;
  font-size: 1.3rem;
  font-family: var(--font-root);
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

/**
 * Basic styles for links
 */
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.inner {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 var(--gutter-width);
}

#contents {
  width: 100%;
  min-height: calc(100vh - 260px);
}

@media only screen and (max-width: 992px) {
  #contents {
    padding-top: 40px;
    min-height: calc(100vh - 120px);
  }
}
@media only screen and (max-width: 768px) {
  #contents {
    min-height: calc(100vh - 55px);
  }
}
.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.ta-center {
  text-align: center !important;
}

.ta-right {
  text-align: right !important;
}

.fw-bold {
  font-weight: bold;
}

.align-items-center {
  align-items: center;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.w-100 {
  width: 100px !important;
}

.w-150 {
  width: 150px !important;
}

.w-170 {
  width: 170px !important;
}

.w-200 {
  width: 200px !important;
}

.w-300 {
  width: 300px !important;
}

.h-150 {
  height: 150px !important;
}

.h-300 {
  height: 300px !important;
}

.h-500 {
  height: 500px !important;
}

.font-barlow {
  font-family: var(--font-barlow);
}

.font-barlow-semi-condensed {
  font-family: var(--font-barlow-semi-condensed);
}

.font-oswald {
  font-family: var(--font-oswald);
}

.pc-display,
.pcDisplay {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc-display,
  .pcDisplay {
    display: none;
  }
}

.sp-display {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp-display {
    display: block;
  }
}

.e-headline--primary {
  border: 3px solid var(--color-primary);
  border-radius: 10px;
  color: var(--color-root);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 43px;
  padding: 22px 25px;
  position: relative;
}
.e-headline--primary small {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 600;
  left: 15px;
  padding-left: 9px;
  padding-right: 9px;
  position: absolute;
  top: -30px;
  font-style: italic;
}
.e-headline--primary em {
  font-size: 4rem;
  font-weight: 600;
  font-style: italic;
}
.e-headline--primary span {
  color: var(--color-primary);
  display: inline-block;
}
.e-headline--txt {
  color: var(--color-primary);
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 4px;
  font-weight: bold;
}
.e-headline--small {
  color: var(--color-primary);
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: bold;
}
@media only screen and (max-width: 1200px) {
  .e-headline--primary {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 992px) {
  .e-headline--primary {
    border-width: 2px;
    font-size: 3rem;
    margin-bottom: 30px;
    padding: 18px 20px;
  }
  .e-headline--primary small {
    font-size: 1.6rem;
  }
  .e-headline--primary small em {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .e-headline--primary {
    border-radius: 5px;
    border-width: 2px;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 23px;
    padding: 9px 12px 7px 12px;
  }
  .e-headline--primary small {
    font-size: 1.2rem;
    left: 7px;
    line-height: 1;
    padding-left: 5px;
    padding-right: 5px;
    top: -13px;
  }
  .e-headline--primary small em {
    font-size: 2rem;
  }
  .e-headline--txt {
    font-size: 1.9rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .e-headline--small {
    font-size: 1.3rem;
    line-height: 2;
  }
}

.headline01 {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 30px;
}
.headline02 {
  color: var(--color-primary);
  font-size: 4rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 39px;
  position: relative;
  z-index: 1;
}
.headline02 span {
  background-color: #FFF;
  padding-right: 19px;
}
.headline02::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 6px);
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #DDD;
  z-index: -1;
}
.headline03 {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-primary);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .headline02 {
    font-size: 3.6rem;
    margin-bottom: 30px;
  }
  .headline02 span {
    padding-right: 12px;
  }
  .headline02::after {
    bottom: calc(50% - 4px);
    height: 4px;
  }
  .headline03 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .headline01 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .headline02 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  .headline02 span {
    padding-right: 8px;
  }
  .headline02::after {
    bottom: calc(50% - 3px);
    height: 3px;
  }
  .headline03 {
    font-size: 2.3rem;
  }
}

.e-txt {
  color: var(--color-root);
  font-size: 1.8rem;
  line-height: 2.23;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  .e-txt {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .e-txt {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 20px;
  }
}

.e-textbox {
  font-size: 0;
}
.e-textbox textarea,
.e-textbox input {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.3rem;
  height: 40px;
  padding: 10px;
  transition: border-color 0.3s;
  width: 100%;
}
.e-textbox textarea:focus,
.e-textbox input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-select {
  font-size: 0;
  max-width: 92%;
}
.e-select select {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.3rem;
  height: 40px;
  padding: 10px;
  transition: border-color 0.3s;
  width: 100%;
}
.e-select select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-radio input {
  border-width: 0;
  font-size: 1.3rem;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.e-radio input:checked + label::before {
  border-color: var(--color-primary);
}
.e-radio input:checked + label::after {
  opacity: 1;
}
.e-radio label {
  color: #606060;
  padding-left: 25px;
  padding-top: 1px;
  position: relative;
}
.e-radio label::after {
  background-color: var(--color-primary);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transition: opacity 0.3s;
  width: 10px;
  z-index: 2;
}
.e-radio label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border-color 0.3s;
  width: 18px;
  z-index: 1;
}
.e-radio label:hover {
  cursor: pointer;
}

.e-status, .e-status--rough, .e-status--check, .e-status--unsupported, .e-status--public {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  width: 70px;
}
.e-status--public {
  background-color: #447ECC;
}
.e-status--unsupported {
  background-color: #c00;
}
.e-status--check {
  background-color: #f90;
}
.e-status--rough {
  background-color: #aaa;
}

#header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-white);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}
#header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  #header {
    height: 50px;
  }
  #header__inner {
    padding: 0 10px;
    gap: 20px;
  }
}

#logo {
  max-width: 300px;
}
@media only screen and (max-width: 768px) {
  #logo {
    max-width: 215px;
  }
}

#btn-menu {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #btn-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    cursor: pointer;
  }
  #btn-menu svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #btn-menu path {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    --length: 49;
    --offset: -10;
    stroke-dasharray: var(--length) var(--total-length);
    stroke-dashoffset: var(--offset);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  #btn-menu .line--1,
  #btn-menu .line--3 {
    --total-length: 150;
  }
  #btn-menu .line--2 {
    --total-length: 70;
  }
  #btn-menu.active .line--1,
  #btn-menu.active .line--3 {
    --offset: -101;
    --length: 40;
  }
  #btn-menu.active .line--2 {
    --offset: -65;
    --length: 0;
  }
}
@media only screen and (max-width: 768px) {
  #btn-menu {
    width: 60px;
  }
}

#overlay {
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (min-width: 1024px) {
  #overlay {
    display: none !important;
  }
}

.navi {
  flex: 1;
  justify-content: flex-end;
  height: 100%;
  gap: 4%;
}
@media only screen and (min-width: 1024px) {
  .navi {
    display: flex !important;
  }
}
.navi__item {
  position: relative;
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 16px;
  text-decoration: none;
}
.navi__item br {
  display: none;
}
.navi__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}
.navi__item--active:after {
  transform: scaleX(1);
}
@media only screen and (max-width: 1350px) {
  .navi__item br {
    display: inline;
  }
}
@media only screen and (max-width: 1250px) {
  .navi__item {
    font-size: 1.2vw;
  }
}
@media only screen and (max-width: 1023px) {
  .navi {
    z-index: 2;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: inset 0px 1px 6px rgba(0, 0, 0, 0.1);
  }
  .navi__item {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 40px 15px 15px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
  }
  .navi__item:after {
    display: none;
  }
  .navi__item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 10px;
    height: 5px;
    background: url("../img/common/icon_arrow_01.svg") no-repeat center center;
    background-size: 100% auto;
  }
  .navi__item--active {
    color: var(--color-primary);
  }
  .navi__item br {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .navi__item:hover:after {
    transform: scaleX(1);
  }
}
.keyv {
  width: 100%;
  height: 870px;
  background: url("../img/home/keyv/img_keyv_bg.jpg") no-repeat 50% 0;
  background-size: cover;
}
.keyv__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.keyv__main-image {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding: 0 var(--gutter-width);
}
.keyv__content {
  position: relative;
  z-index: 1;
  display: flex;
}
.keyv__box-1 {
  position: relative;
  width: 50%;
}
.keyv__box-2 {
  position: relative;
  width: 50%;
}
.keyv__image {
  aspect-ratio: 590/369;
}
.keyv__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyv__txt {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 15px;
  height: 50px;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1200px) {
  .keyv {
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media only screen and (max-width: 768px) {
  .keyv__main-image {
    top: 5vw;
  }
  .keyv__txt {
    padding: 5px 8px;
    height: 23px;
    font-size: 1rem;
  }
}

#wrapper {
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    padding-top: 50px;
  }
}

.col--02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col--02 > * {
  width: calc((100% - 30px) / 2);
}
@media only screen and (max-width: 768px) {
  .col--02 > * {
    width: 100%;
    margin-bottom: 20px;
  }
}

#page-top {
  z-index: 10;
  position: fixed;
  right: 50px;
  bottom: 50px;
  display: none;
}
#page-top p {
  width: 52px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 2px;
  background-color: rgba(183, 183, 183, 0.7);
  color: var(--color-white);
  transition: background-color 0.3s;
  text-align: center;
  font-family: var(--font-barlow-semi-condensed);
  font-size: 20px;
  font-weight: 500;
}
#page-top .icon {
  transition: transform 0.3s ease-in;
  transform: translateY(0);
}
@media only screen and (min-width: 1025px) {
  #page-top p:hover {
    cursor: pointer;
    background-color: rgba(183, 183, 183, 0.9);
  }
  #page-top p:hover img {
    animation: bounce-image 0.3s infinite alternate;
  }
  @keyframes bounce-image {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-5px);
    }
  }
}
@media only screen and (max-width: 768px) {
  #page-top {
    right: 5px;
    bottom: 20px;
  }
  #page-top p {
    width: 38px;
    height: 60px;
    font-size: 10px;
  }
  #page-top .icon {
    width: 10px;
  }
}

.c-point {
  margin-top: 52px;
  padding-top: 30px;
}
.c-point .e-headline--txt {
  margin-top: 60px;
}
.c-point .e-headline--small {
  margin-top: 22px;
}
.c-point__item {
  margin-bottom: 110px;
}
.c-point__item--mb82 {
  margin-bottom: 82px;
}
@media only screen and (max-width: 768px) {
  .c-point__item--mb82 {
    margin-bottom: 40px;
  }
}
.c-point__row {
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-template-columns: calc(50% - 15px) calc(50% - 15px);
  margin-top: 53px;
}
.c-point__img {
  display: block;
  font-size: 0;
  line-height: 0;
}
.c-point__img img {
  height: auto;
  width: 100%;
}
.c-point__head {
  margin-bottom: 20px;
  margin-top: 13px;
  position: relative;
  z-index: 1;
}
.c-point__head::before {
  background-color: var(--color-root);
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  width: 100%;
  z-index: -1;
}
.c-point__head span {
  background-color: var(--color-white);
  color: var(--color-root);
  font-size: 2.2rem;
  font-weight: 700;
  padding-right: 10px;
}
.c-point__note {
  font-size: 1.4rem;
  line-height: 1.8;
}
.c-point__note li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-point__box {
  display: flex;
  margin-bottom: 58px;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
.c-point__list {
  color: var(--color-root);
  font-size: 1.6rem;
  font-weight: 500;
}
.c-point__list li {
  margin-bottom: 8px;
}
.c-point__list li:last-child {
  margin-bottom: 0;
}
.c-point__wrap {
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: -53px;
}
.c-point__avatar {
  display: inline-block;
  font-size: 0;
  margin-top: -100px;
  margin-right: 14px;
  width: 271px;
  z-index: 1;
}
.c-point__avatar img {
  height: auto;
  width: 100%;
}
.c-point__des {
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  font-size: 2rem;
  font-weight: 500;
  left: 0;
  padding-left: 10px;
  position: absolute;
  top: 0;
}
.c-point__des em {
  background-color: var(--color-grey);
  display: inline-block;
  font-style: normal;
  margin-left: 10px;
  padding: 6px 10px;
}
.c-point__model {
  align-items: center;
  border: 1px solid var(--color-border);
  display: flex;
  height: 100%;
  padding: 40px 10px 10px;
  position: relative;
}
.c-point__security__block {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 50px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-point__security__block {
    flex-direction: column;
    gap: 30px;
  }
}
.c-point__security__item {
  width: 33.3333333333%;
}
.c-point__security__item img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-point__security__item {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  .c-point__security__item img {
    width: 48%;
    max-width: 165px;
  }
}
.c-point__security__ttl {
  margin-top: 37px;
  font-size: 1.6rem;
  line-height: 2.1;
}
@media only screen and (max-width: 768px) {
  .c-point__security__ttl {
    font-size: 1.2rem;
    margin-top: 0;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 768px) {
  .c-point {
    margin-top: 20px;
  }
  .c-point .e-headline--txt {
    margin-top: 41px;
  }
  .c-point .e-headline--small {
    margin-top: 11px;
    margin-bottom: -16px;
  }
  .c-point__item {
    margin-bottom: 57px;
  }
  .c-point__row {
    display: block;
    margin-top: 27px;
  }
  .c-point__col {
    margin-bottom: 15px;
  }
  .c-point__col:last-child {
    margin-bottom: 0;
  }
  .c-point__head {
    margin-bottom: 15px;
    margin-top: 27px;
  }
  .c-point__head::before {
    height: 2px;
  }
  .c-point__head span {
    font-size: 1.5rem;
    padding-right: 10px;
  }
  .c-point__list {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .c-point__box {
    margin-bottom: 30px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .c-point__note {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .c-point__note li {
    margin-bottom: 7px;
  }
  .c-point__note li:last-child {
    margin-bottom: 0;
  }
  .c-point__wrap {
    display: block;
    margin-bottom: 40px;
  }
  .c-point__avatar {
    float: right;
    margin: 0 0 0 10px;
    width: 125px;
  }
  .c-point__des {
    font-size: 1.2rem;
  }
  .c-point__des em {
    margin-left: 5px;
    padding: 4px 5px;
  }
  .c-point__model {
    min-height: 194px;
    padding-top: 25px;
  }
}

.c-menu {
  background-color: var(--color-pink-pastel);
  border-radius: 10px;
  padding: 24px 20px 30px 404px;
  margin-top: 95px;
  position: relative;
}
.c-menu .e-headline--small {
  margin-top: 0;
}
.c-menu__img {
  bottom: 0;
  display: inline-block;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 63px;
  width: 266px;
}
.c-menu__img img {
  height: auto;
  width: 100%;
}
.c-menu__txt {
  color: var(--color-root);
  font-size: 1.4rem;
  margin-top: 9px;
}
.c-menu__info {
  background-color: var(--color-white);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-root);
  font-size: 1.6rem;
  line-height: 2.2;
  margin-top: 25px;
  padding: 20px 30px;
}
@media only screen and (max-width: 1200px) {
  .c-menu {
    padding: 20px 20px 30px 325px;
  }
  .c-menu__img {
    left: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .c-menu {
    display: block;
    border-radius: 5px;
    margin-top: 50px;
    padding: 15px 15px 15px 240px;
    position: relative;
  }
  .c-menu .e-headline--small {
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
  }
  .c-menu__txt {
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .c-menu__info {
    line-height: 1.9;
    margin-top: 25px;
    padding: 12px 15px 10px;
  }
  .c-menu__img {
    left: 20px;
    width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .c-menu {
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px;
  }
  .c-menu__info {
    font-size: 1.3rem;
    margin-left: -8px;
    margin-top: 0;
    width: calc(100% - 125px);
  }
  .c-menu__img {
    position: relative;
    left: 0;
    bottom: -15px;
    width: 133px;
  }
  .c-menu__txt {
    margin-bottom: 25px;
  }
}

.recommend {
  margin-top: -50px;
}
.recommend__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 175px;
  margin-bottom: 30px;
  background-color: var(--color-primary);
}
.recommend__head::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  width: 100%;
  background: var(--color-pink-pastel) url("../img/common/img_subtraction.svg") no-repeat 50% 50%;
  background-size: auto 30px;
  content: "";
}
.recommend__head__image {
  margin-bottom: 35px;
  margin-left: -12px;
  padding-top: 25px;
}
.recommend__head__image img {
  display: block;
}
.recommend__content {
  padding: 40px 0 40px;
  background-color: var(--color-pink-pastel);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media only screen and (max-width: 1250px) {
  .recommend__content {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .recommend__head {
    height: 85px;
    margin-bottom: 10px;
  }
  .recommend__head::after {
    bottom: -10px;
    height: 10px;
    background-size: auto 10px;
  }
  .recommend__head__image {
    max-width: 273px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .recommend__content {
    padding: 20px 0 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .recommend {
    margin-top: -23px;
  }
  .recommend__head__image {
    margin-bottom: 20px;
  }
}

.point-list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  border: 1px solid #E9B2BE;
  overflow: hidden;
}
.point-list__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 10px 50px 9px 20px;
  border-top: 1px solid #E9B2BE;
  background-color: var(--color-white);
  text-decoration: none !important;
  transition: 0.2s background-color;
}
.point-list__item::after {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  width: 40px;
  height: 100%;
  background: url("../img/common/icon_arrow_01.svg") no-repeat;
  background-size: 20px auto;
  content: "";
}
.point-list__item:nth-of-type(1) {
  border-top: 0;
}
.point-list__item:nth-of-type(2) {
  border-top: 0;
}
.point-list__item:nth-child(even) {
  border-left: 1px solid #E9B2BE;
}
.point-list__item--full {
  width: 100%;
}
.point-list__index {
  margin-right: 20px;
  padding-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
  font-style: italic;
}
.point-list__index span {
  font-size: 2.8rem;
  font-weight: 700;
}
.point-list__txt {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-root);
}
@media only screen and (min-width: 1025px) {
  .point-list__item:hover {
    background-color: var(--color-pink-pastel);
  }
  .point-list__item:hover::after {
    background-image: url("../img/common/icon_arrow_02.svg");
  }
}
@media only screen and (max-width: 768px) {
  .point-list {
    flex-direction: column;
    border-radius: 5px;
  }
  .point-list__item {
    width: 100%;
    padding: 9px 30px 9px 15px;
  }
  .point-list__item::after {
    top: calc(50% - 4px);
    width: 30px;
    background-size: 13px auto;
  }
  .point-list__item:nth-child(even) {
    border-left: 0;
  }
  .point-list__item:nth-of-type(1) {
    border-bottom: 1px solid #E9B2BE;
  }
  .point-list__index {
    margin-right: 12px;
    padding-bottom: 0;
    font-size: 1rem;
  }
  .point-list__index span {
    font-size: 1.6rem;
  }
  .point-list__txt {
    font-size: 1.3rem;
  }
}

.b-question {
  margin-bottom: 30px;
}
.b-question__item {
  background-color: var(--color-pink-pastel);
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}
.b-question__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 10px;
  background-color: var(--bg-root);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.b-question__item::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 63px;
  height: 63px;
  border-radius: 10px 0 100px 0;
  background-color: var(--color-pink-light);
}
.b-question__wrap {
  position: relative;
  z-index: 3;
  padding: 28px 37px 40px 75px;
}
.b-question__wrap::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 25px;
  width: 38px;
  height: 32px;
  background: url("../img/common/txt_q.svg") no-repeat center center;
}
.b-question__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.b-question__des {
  font-size: 1.8rem;
  line-height: 2.2;
}
.b-question--mb64 {
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  .b-question--mb64 {
    margin-bottom: 30px;
  }
}
.b-question--mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .b-question--mb100 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .b-question__item {
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .b-question__item::after {
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 5px;
  }
  .b-question__item::before {
    width: 37.5px;
    height: 37.5px;
    border-radius: 5px 0 50px 0;
  }
  .b-question__wrap {
    padding: 17px 20px 20px 43px;
  }
  .b-question__wrap::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 15px;
    width: 23px;
    height: 19px;
    background-size: 23px auto;
  }
  .b-question__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .b-question__des {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}

.c-introduce {
  position: relative;
  background: url("../img/home/bg_intro.jpg") no-repeat 50% 0%;
  background-size: cover;
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .c-introduce {
    margin-bottom: 40px;
  }
}
.c-introduce:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(51, 51, 51, 0.6);
}
.c-introduce__block {
  position: relative;
  z-index: 1;
  padding: 70px 0px 60px;
}
.c-introduce__txt {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--color-white);
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .c-introduce {
    background-position: 30% 50%;
  }
  .c-introduce__block {
    padding: 35px 0px 30px;
  }
  .c-introduce__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 25px;
  }
}

.iframe__box {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.iframe__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cost-overview {
  margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .cost-overview {
    margin-top: 40px;
  }
}
.cost-overview .e-headline--primary {
  margin-bottom: 64px;
}

.c-cost {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
@media only screen and (min-width: 1025px) {
  .c-cost {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost {
    gap: 10px;
    margin-bottom: 30px;
  }
  .c-cost--gap15 {
    gap: 15px;
  }
}
.c-cost__card {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}
.c-cost--dorm, .c-cost--apartment {
  background-color: var(--color-pink-pastel);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.c-cost--dorm .c-cost__total, .c-cost--apartment .c-cost__total {
  background-color: var(--color-primary);
}
@media only screen and (max-width: 768px) {
  .c-cost--dorm, .c-cost--apartment {
    border-radius: 5px;
  }
}
.c-cost--apartment {
  background-color: #e8f3ff;
}
.c-cost--apartment .c-cost__total {
  background-color: var(--color-blue);
}
.c-cost__title, .c-cost__title--blue {
  margin: 25px 30px;
  padding: 4px 0 4px 13px;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}
.c-cost__title::before, .c-cost__title--blue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
}
.c-cost__title--blue::before {
  content: "";
  background-color: var(--color-blue);
}
@media only screen and (max-width: 1024px) {
  .c-cost__title, .c-cost__title--blue {
    font-size: 2.6rem;
    padding-left: 20px;
    margin: 20px 25px;
    padding: 4px 0 4px 13px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__title, .c-cost__title--blue {
    font-size: 1.7rem;
    padding-left: 10px;
    margin: 15px 18px;
    padding: 3px 0 3px 13px;
  }
  .c-cost__title::before, .c-cost__title--blue::before {
    width: 3px;
  }
}
.c-cost__list {
  list-style: none;
  margin: 0;
  padding: 0 30px 10px 30px;
}
@media only screen and (max-width: 1024px) {
  .c-cost__list {
    padding: 0 25px 10px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__list {
    padding: 0 18px 9px 18px;
  }
}
.c-cost__item, .c-cost__item--blue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 10px 20px;
  background-color: var(--color-white);
  border: 1px solid #E9B2BE;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-cost__item, .c-cost__item--blue {
    padding: 8px 16px 10px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__item, .c-cost__item--blue {
    padding: 5px 12px;
  }
}
.c-cost__item--blue {
  border-color: #B0CFF2;
}
.c-cost__item .plus-circle, .c-cost__item .plus-circle--blue-light, .c-cost__item--blue .plus-circle, .c-cost__item--blue .plus-circle--blue-light {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-white);
  background-color: #E9B2BE;
}
.c-cost__item .plus-circle--blue-light, .c-cost__item--blue .plus-circle--blue-light {
  background-color: var(--color-blue-light);
}
.c-cost__item .plus-circle::before, .c-cost__item--blue .plus-circle::before, .c-cost__item .plus-circle--blue-light::before, .c-cost__item--blue .plus-circle--blue-light::before {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  width: 3px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.c-cost__item .plus-circle::after, .c-cost__item--blue .plus-circle::after, .c-cost__item .plus-circle--blue-light::after, .c-cost__item--blue .plus-circle--blue-light::after {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  width: 25px;
  height: 3px;
  right: 50%;
  transform: translateX(50%);
}
@media only screen and (max-width: 1024px) {
  .c-cost__item .plus-circle, .c-cost__item .plus-circle--blue-light, .c-cost__item--blue .plus-circle, .c-cost__item--blue .plus-circle--blue-light {
    width: 36px;
    height: 36px;
  }
  .c-cost__item .plus-circle::before, .c-cost__item--blue .plus-circle::before, .c-cost__item .plus-circle--blue-light::before, .c-cost__item--blue .plus-circle--blue-light::before {
    width: 2px;
    height: 18px;
  }
  .c-cost__item .plus-circle::after, .c-cost__item--blue .plus-circle::after, .c-cost__item .plus-circle--blue-light::after, .c-cost__item--blue .plus-circle--blue-light::after {
    width: 18px;
    height: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__item .plus-circle, .c-cost__item .plus-circle--blue-light, .c-cost__item--blue .plus-circle, .c-cost__item--blue .plus-circle--blue-light {
    width: 26px;
    height: 26px;
    border-width: 1px;
  }
  .c-cost__item .plus-circle::before, .c-cost__item--blue .plus-circle::before, .c-cost__item .plus-circle--blue-light::before, .c-cost__item--blue .plus-circle--blue-light::before {
    width: 1.6px;
    height: 13px;
  }
  .c-cost__item .plus-circle::after, .c-cost__item--blue .plus-circle::after, .c-cost__item .plus-circle--blue-light::after, .c-cost__item--blue .plus-circle--blue-light::after {
    width: 13px;
    height: 1.6px;
  }
}
.c-cost__item:not(:last-child), .c-cost__item--blue:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .c-cost__item:not(:last-child), .c-cost__item--blue:not(:last-child) {
    margin-bottom: 5px;
  }
}
.c-cost__icon {
  position: absolute;
  bottom: calc(0% - 25px);
  z-index: 2;
  right: calc(0% + 153px);
}
@media only screen and (max-width: 1024px) {
  .c-cost__icon {
    right: calc(0% + 130px);
    bottom: calc(0% - 25px);
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__icon {
    right: calc(0% + 97px);
    bottom: calc(0% - 16px);
  }
}
.c-cost__label {
  color: var(--color-root);
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-cost__label .sub {
  font-size: 1.6rem;
  color: var(--color-root);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .c-cost__label {
    font-size: 2rem;
  }
  .c-cost__label .sub {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__label {
    font-size: 1.5rem;
  }
  .c-cost__label .sub {
    font-size: 1rem;
  }
}
.c-cost__price, .c-cost__price--blue {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 3.4rem;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.c-cost__price--blue {
  color: var(--color-blue);
}
.c-cost__price .unit, .c-cost__price--blue .unit {
  margin-left: 7px;
  font-size: 2rem;
  color: var(--color-root);
  font-weight: bold;
  font-family: var(--font-root);
}
@media only screen and (max-width: 1024px) {
  .c-cost__price, .c-cost__price--blue {
    font-size: 2.8rem;
  }
  .c-cost__price .unit, .c-cost__price--blue .unit {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__price, .c-cost__price--blue {
    font-size: 2rem;
  }
  .c-cost__price .unit, .c-cost__price--blue .unit {
    font-size: 1.2rem;
  }
}
.c-cost__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}
@media only screen and (max-width: 1024px) {
  .c-cost__total {
    padding: 10px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__total {
    padding: 6px 28px;
  }
}
.c-cost__total-label {
  display: block;
  font-size: 3.2rem;
  color: var(--color-white);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .c-cost__total-label {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__total-label {
    font-size: 1.9rem;
  }
}
.c-cost__total-price {
  font-size: 5rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}
.c-cost__total-price .unit {
  margin-left: 7px;
  font-size: 2.6rem;
  color: var(--color-white);
  font-weight: bold;
  font-family: var(--font-root);
}
@media only screen and (max-width: 1024px) {
  .c-cost__total-price {
    font-size: 4.4rem;
  }
  .c-cost__total-price .unit {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-cost__total-price {
    font-size: 3rem;
  }
  .c-cost__total-price .unit {
    font-size: 1.5rem;
  }
}
.c-cost__note {
  padding: 12px 0;
  font-size: 1.6rem;
  color: var(--color-root);
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .c-cost__note {
    font-size: 1rem;
    padding: 5px 0;
  }
}
.c-cost__btn {
  border: 4px solid #CCC;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--color-root);
  text-align: center;
  text-decoration: none;
  position: relative;
  line-height: 1.4;
}
.c-cost__btn::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 22.5px);
  width: 45px;
  height: 45px;
  background: url("../img/common/icon_arrow_up_right_01.svg") no-repeat;
  background-size: contain;
  transition: background 0.2s ease-in-out;
}
.c-cost__btn:hover {
  background-color: #ECECEC;
}
.c-cost__btn:hover::before {
  background: url("../img/common/icon_arrow_up_right_02.svg") no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .c-cost__btn {
    font-size: 1.5rem;
    padding: 11px 12px 10px 12px;
    border-width: 2px;
    border-radius: 5px;
  }
  .c-cost__btn::before {
    right: 12px;
    width: 27px;
    height: 27px;
    background-size: contain;
    top: calc(50% - 13.5px);
  }
}

.b-image {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 40px;
}
.b-image__block, .b-image__block--des {
  width: 50%;
}
.b-image__block--flex {
  padding: 10px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.b-image__block--image {
  max-width: 570px;
}
.b-image__block--des {
  padding-right: 8px;
}
@media only screen and (max-width: 768px) {
  .b-image__block--des {
    padding-right: 0;
  }
}
.b-image__text-border {
  margin-left: -8px;
  width: -moz-max-content;
  width: max-content;
  padding: 7px 0 7px 8px;
  border: 1px solid var(--color-gray);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.b-image__province {
  font-size: 3rem;
  margin-bottom: 4px;
  font-weight: 500;
}
.b-image__province span {
  font-size: 2rem;
}
.b-image__province--small {
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 500;
}
.b-image__des {
  font-size: min(3rem, 2.4vw);
  font-weight: bold;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .b-image {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .b-image__block, .b-image__block--des {
    width: 100%;
  }
  .b-image__block--flex {
    padding: 0 4px;
  }
  .b-image__block--image {
    max-width: unset;
  }
  .b-image__text-border {
    margin-left: -4px;
    padding: 2px 0 2px 4px;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .b-image__province {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .b-image__province span {
    font-size: 0.9rem;
  }
  .b-image__province--small {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .b-image__des {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.5;
  }
}

.contact {
  background-color: var(--color-primary);
  width: 100%;
  margin-top: 130px;
  padding: 60px 0 40px 0;
}
@media only screen and (max-width: 1100px) {
  .contact {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .contact {
    padding: 30px 0;
    margin-top: 30px;
  }
}

.c-contact {
  background-color: var(--color-white);
  border-radius: 10px;
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .c-contact {
    flex-direction: column;
    border-radius: 5px;
  }
}
.c-contact__box--left {
  width: 50%;
  border-right: 1px solid var(--color-border);
  padding: 53px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-contact__box--right {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .c-contact__box--right {
    width: 100%;
  }
  .c-contact__box--left {
    padding: 26px;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
}
.c-contact__info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  padding: 15px;
}
@media only screen and (max-width: 1100px) {
  .c-contact__info {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .c-contact__info {
    padding: 15px 10px;
  }
}
.c-contact__info > div {
  width: 58%;
}
@media only screen and (max-width: 1100px) {
  .c-contact__info > div {
    width: auto;
    text-align: center;
  }
}
.c-contact__info:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.c-contact__info--base {
  width: 42%;
  font-size: 2.2rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: bold;
}
@media only screen and (max-width: 1100px) {
  .c-contact__info--base {
    width: auto;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-contact__info--base {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-contact__info--base {
    font-size: 1.6rem;
  }
}
.c-contact__info--name {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #222;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .c-contact__info--name {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-contact__info--name {
    font-size: 1.2rem;
  }
}
.c-contact__info--tel {
  font-size: 3.6rem;
  line-height: 1.2;
  color: #222;
  font-weight: 500;
}
.c-contact__info--tel > span {
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .c-contact__info--tel {
    font-size: 3.2rem;
  }
  .c-contact__info--tel > span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-contact__info--tel {
    font-size: 2.8rem;
  }
  .c-contact__info--tel > span {
    font-size: 1.3rem;
  }
}

#footer {
  background-color: var(--bg-footer);
  padding-bottom: 50px;
  padding-top: 45px;
}
#footer .f-copyright {
  color: #999;
  text-align: center;
  font-family: var(--font-oswald);
  font-size: 10px;
  font-weight: bold;
}
#footer .f-row {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}
#footer .f-row .f-logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 768.1px) {
  #footer .f-row .f-logo a:hover {
    opacity: 0.7;
  }
}
#footer .f-row .f-content {
  flex: 1;
  padding-top: 5px;
}
#footer .f-row .f-address {
  font-size: 13px;
}
#footer .f-row .f-address:not(:last-child) {
  margin-bottom: 20px;
}
#footer .f-row .f-address strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #footer .f-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #footer .f-row .f-content {
    width: 100%;
    padding-top: 0;
  }
  #footer .f-row .f-address {
    font-size: 10px;
  }
  #footer .f-row .f-address:not(:last-child) {
    margin-bottom: 15px;
  }
  #footer .f-row .f-address strong {
    font-size: inherit;
  }
  #footer .f-row .f-logo {
    width: 85px;
  }
}

.l-default {
  background-color: #e9e9e9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-default__container {
  display: flex;
  flex: 1;
}
.l-default__main {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
}
.l-default__box {
  background-color: var(--color-white);
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}
.l-default__inner {
  padding: 10px 25px;
}
.l-default__head {
  padding: 13px 8px;
}
.l-default__head:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.l-default__wrap {
  display: flex;
  justify-content: center;
}
.l-default__wrap > * {
  margin-left: 5px;
  margin-right: 5px;
}

.t-default {
  background-color: #f9f9f9;
  min-height: 100vh;
}/*# sourceMappingURL=style.min.css.map */