@charset "UTF-8";
:root {
  --color-brown: #482607;
  --color-main: #E75F19;
  --color-sub: #F6F4EA;
  --color-01: #EBE4CB;
  --color-02: #F68E06;
  --color-03: #f1b869;
  --color-04: #826F5F;
  --color-05: #ffcf8d;
  --color-06: #FFF836;
  --color-07: #555555;
  --color-08:#FF9C2B;
  --color-09:#EB340F;
  --color-10:#EB340F;
  --color-11:#FEFCF6;
  --color-12:#5E4E41;
  --color-13:#EDEDED;
  --color-14:#999999;
  --color-15:#707070;
  --color-16:#CCCCCC;
  --color-17:#F49E00;
  --color-18:#858585;
  --color-19:#F5F5F5;
  --color-20:#333;
  --color-21:#1571DA;
  --color-22:#743A1F;
  --color-23:#F2F0EF;
  --font-ja: 'Noto Sans JP';
  --font-en: 'Roboto';
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
}

/* ======================================================================
 common style index
・reset
・variable
・mixin
・base
・utility
・component
・layout
====================================================================== */
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

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

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

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

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

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

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

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

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

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

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ======================================================================
 base
====================================================================== */
html {
  font-size: 62.5%;
}

body {
  color: var(--color-brown);
  font-family: var(--font-ja), "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  font-weight: var(--font-medium);
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 768px) {
  body {
    width: 100%;
    /*min-width: $content_width;*/
  }
}
/* html, body {
  width: 100%;
  height: 100%;
} */

* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

/* a */
a {
  text-decoration: none;
}

a:link {
  color: var(--color-brown);
  cursor: pointer;
}

a:visited {
  color: var(--color-brown);
}

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

a:active {
  color: var(--color-brown);
}

a[href^="tel"] {
  color: var(--color-brown);
}

/* Text Highlight */
/* button */
button {
  display: block;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #222222;
}

/* placeholder */
input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #858585;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #858585;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #858585;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #858585;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #858585;
}

input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #858585;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #858585;
}

input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #858585;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #858585;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #858585;
  opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #858585;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.u_cf:after {
  display: block;
  clear: both;
  content: "";
}

@media screen and (min-width: 768px) {
  .u_pc {
    display: block;
  }

  .u_pc_i {
    display: inline;
  }

  .u_pc_ib {
    display: inline-block;
  }

  .u_pc_f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .u_pc_if {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .u_sp {
    display: none;
  }

  .u_sp_i, .u_sp_ib, .u_sp_f, .u_sp_if {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u_pc {
    display: none;
  }

  .u_pc_i, .u_pc_ib, .u_pc_f, .u_pc_if {
    display: none;
  }

  .u_sp {
    display: block;
  }

  .u_sp_i {
    display: inline;
  }

  .u_sp_ib {
    display: inline-block;
  }

  .u_sp_f {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .u_sp_if {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* =================================
 content_size
================================= */
.u_content_size {
  padding: 0;
  margin: 0 auto;
  width: 1080px;
}

.u_content_2 {
  padding: 0;
  margin: 0 auto;
  width: 900px;
}

.u_content_3 {
  padding: 0;
  margin: 0 auto;
  width: 1000px;
}

/*@media screen and (max-width: 1080px) {*/
@media screen and (max-width: 767px) {
  .u_content_size {
    width: 100%;
    padding: 0 15px;
  }
}
/*@media screen and (max-width: 1000px) {*/
@media screen and (max-width: 767px) {
  .u_content_3 {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .u_content_2 {
    padding: 0 15px;
    width: 100%;
  }
}
/* =================================
 separator
================================= */
.u_separator_1 {
  padding-top: 6vw;
  /* margin-top: -6vw; */
  width: 100%;
  overflow: hidden;
  position: relative;
}
.u_separator_1::before {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50% / 100% 100% 0 0;
  width: 150vw;
  height: 35.5vw;
}
@media screen and (max-width: 767px) {
  .u_separator_1 {
    padding-top: 12vw;
  }
}

/* =================================
 text
================================= */
.u_txt_1 {
  font-size: 16px;
  line-height: 1.9;
}

.u_txt_2 {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .u_txt_2 {
    /*font-size: 18px;*/
  }
}
.u_txt_3 {
  font-size: 18px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .u_txt_3 {
    font-size: 18px;
  }
}
.u_txt_4 {
  font-size: 14px;
  line-height: 2;
}

.u_txt_5 {
  font-size: 14px;
  line-height: 1.7;
}

.u_txt_6 {
  font-size: 13px;
  line-height: 1.7;
}

.u_txt_7 {
  font-size: 16px;
  line-height: 1.5;
}

.u_txt_8 {
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .u_txt_8 {
    font-size: 20px;
  }
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text align
================================= */
.u_ta_c {
  text-align: center;
}

.u_ta_r {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u_ta_cl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_lc {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_cr {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_cr {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u_ta_rc {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u_ta_rc {
    text-align: center;
  }
}
/* =================================
 hover animation
================================= */
.u_hover_1 {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 1025px) {
  .u_hover_1:hover {
    opacity: .7;
  }
}
/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
.c_ttl_1 {
  font-size: 28px;
  line-height: 1.5;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: var(--font-bold);
  background-color: var(--color-02);
  border-radius: 20px 20px 0 0;
  color: #fff;
}

.c_ttl_1:has(.expansion) {
  justify-content: space-between;
  align-items: center;
}

.c_ttl_1 .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-en), sans-serif;
  font-weight: var(--font-bold);
  padding-right: 17px;
}

.c_ttl_1 .left .en {
  font-size: 12px;
  text-align: center;
  line-height: 1;
}

.c_ttl_1 .left .num {
  font-size: 28px;
  line-height: 1;
}

.c_ttl_1 .right {
  font-weight: var(--font-bold);
  padding-left: 17px;
  position: relative;
}

.c_ttl_1 .subttl_box {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c_ttl_1 .expansion {
  content: "";
  display: block;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
}

.c_ttl_1 .expansion::before,
.c_ttl_1 .expansion::after {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--color-02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c_ttl_1 .expansion::before {
  width: 2px;
  height: 10px;
}

.c_ttl_1 .expansion::after {
  width: 10px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .c_ttl_1 {
    font-size: 17px;
    margin: 0 0 10px;
  }

  .c_ttl_1 .left {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c_ttl_1 .left .en {
    font-size: 12px;
  }

  .c_ttl_1 .left .num {
    margin-top: 5px;
    max-width: 55px;
  }

  .c_ttl_1 .right {
    margin-left: 10px;
  }
}
.c_ttl_1--small .left .num {
  max-width: 60px;
}

@media screen and (max-width: 767px) {
  .c_ttl_1--small .left .num {
    max-width: 40px;
  }
}
.c_ttl_2 {
  color: var(--color-main);
  font-weight: var(--font-bold);
  line-height: 1.5;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c_ttl_2 {
    font-size: 18px;
  }
}

.c_ttl_3 {
  margin: 0 0 35px;
  line-height: 1.6;
  text-align: center;
  font-weight: var(--font-bold);
  position: relative;
}
.c_ttl_3 .sub {
  font-size: 32px;
}
.c_ttl_3 .main {
  font-size: 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .c_ttl_3 {
    margin: 0 0 25px;
  }
  .c_ttl_3 .sub {
    font-size: 26px;
  }
  .c_ttl_3 .main {
    font-size: 27px;
    display: block;
  }
}

.c_ttl_4 {
  font-size: 32px;
  font-weight: var(--font-bold);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .c_ttl_4 {
    font-size: 24px;
  }
}

.c_ttl_5 {
  margin: 0 0 30px;
  line-height: 1.4;
  text-align: center;
  font-weight: var(--font-bold);
  position: relative;
  padding-bottom: 21px;
}
.c_ttl_5 .main {
  font-size: 40px;
}
.c_ttl_5::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-02);
}
@media screen and (max-width: 767px) {
  .c_ttl_5 .main {
    font-size: 30px;
  }
  .c_ttl_5::after {
    width: 50px;
    height: 3px;
  }
}

.c_ttl_6 {
  background-color: var(--color-02);
  border-radius: 20px 20px 0 0;
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  font-weight: var(--font-bold);
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c_ttl_6 {
    font-size: 24px;
  }
}

/* =================================
 buttons
================================= */
.c_btn_1,
.c_btn_1:link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 42px;
  width: 162px;
  border-radius: 9999px;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*-webkit-transform: rotateZ(0.03deg);
  transform: rotateZ(0.03deg);*/
  letter-spacing: 0.03em;
}

.c_btn_1:before,
.c_btn_1:link:before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  margin: 0 5px 0 0;
  background: url(../images/p_top/icon_mail.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.c_btn_1:visited, .c_btn_1:active,
.c_btn_1:link:visited,
.c_btn_1:link:active {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c_btn_1:hover,
  .c_btn_1:link:hover {
    background-color: #fff;
    color: var(--color-main);
  }
  .c_btn_1:hover:before,
  .c_btn_1:link:hover:before {
    background: url(../images/p_top/icon_mail_main.svg);
  }
}
@media screen and (max-width: 767px) {
  .c_btn_1,
  .c_btn_1:link {
    height: 50px;
    width: 320px;
  }

  .c_btn_1:before,
  .c_btn_1:link:before {
    margin: 0 5px 0 0;
  }

  .c_btn_1:after,
  .c_btn_1:link:after {
    width: 10px;
    height: 10px;
    margin-left: 10px;
  }
}
.c_btn_1--large,
.c_btn_1--large:link {
  width: 300px;
  height: 70px;
  font-size: 18px;
}

.c_btn_1--large:before,
.c_btn_1--large:link:before {
  margin: 0 14px 0 0;
}

@media screen and (max-width: 767px) {
  .c_btn_1--large,
  .c_btn_1--large:link {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }

  .c_btn_1--large:after,
  .c_btn_1--large:link:after {
    width: 9px;
    height: 9px;
    margin-left: 10px;
  }
}
.c_btn_2,
.c_btn_2:link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 42px;
  width: 162px;
  border-radius: 9999px;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotateZ(0.03deg);
  transform: rotateZ(0.03deg);
  letter-spacing: 0.03em;
}

.c_btn_2:visited, .c_btn_2:active,
.c_btn_2:link:visited,
.c_btn_2:link:active {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c_btn_2:hover,
  .c_btn_2:link:hover {
    background-color: #fff;
    color: var(--color-main);
  }
}
@media screen and (max-width: 767px) {
  .c_btn_2,
  .c_btn_2:link {
    height: 50px;
    width: 320px;
  }
}
.c_btn_3,
.c_btn_3:link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 70px;
  width: 340px;
  border-radius: 9999px;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotateZ(0.03deg);
  transform: rotateZ(0.03deg);
  letter-spacing: 0.03em;
  position: relative;
}
.c_btn_3:after, .c_btn_3:link:after,
.c_btn_3:link:after,
.c_btn_3:link:link:after {
  content: "";
  display: block;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  background: transparent;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}
.c_btn_3:visited, .c_btn_3:active, .c_btn_3:link:visited, .c_btn_3:link:active,
.c_btn_3:link:visited,
.c_btn_3:link:active,
.c_btn_3:link:link:visited,
.c_btn_3:link:link:active {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .c_btn_3:hover,
  .c_btn_3:link:hover {
    background-color: #fff;
    background-color: #fff;
    color: var(--color-main);
  }
  .c_btn_3:hover:after,
  .c_btn_3:link:hover:after {
    border-bottom: solid 2px var(--color-main);
    border-right: solid 2px var(--color-main);
  }
}
@media screen and (max-width: 767px) {
  .c_btn_3,
  .c_btn_3:link {
    height: 60px;
    width: 315px;
  }

  .c_btn_3:after,
  .c_btn_3:link:after {
    width: 8px;
    height: 8px;
  }
}
/* =================================
 icon
================================= */
/* =================================
 table
================================= */
.c_table_1 {
  width: 100%;
  border-collapse: inherit;
}

.c_table_1 th,
.c_table_1 td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.c_table_1 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}

.c_table_1 tr:first-of-type th:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.c_table_1 tr:first-of-type th:nth-of-type(n+2) {
  width: 179px;
}

.c_table_1 tr:not(:first-of-type):not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}

.c_table_1 tr .last_th {
  border-radius: 0 0 0 10px;
}

.c_table_1 tr:first-of-type th:nth-child(1) {
  background-color: transparent;
}

.c_table_1 tr:first-of-type th:nth-child(2) {
  border-radius: 10px 0 0 0;
}

.c_table_1 tr:first-of-type th:last-of-type {
  border-radius: 0 10px 0 0;
}

.c_table_1 tr:nth-child(2) th:nth-child(1) {
  border-radius: 10px 0 0 0;
}

.c_table_1 tr td {
  border-right: 1px solid var(--color-brown);
  font-size: 15px;
  line-height: 1.6;
  font-weight: var(--font-medium);
}

.c_table_1 tr:nth-of-type(n+2) td {
  border-top: 1px solid var(--color-brown);
}

.c_table_1 tr:last-of-type td {
  border-bottom: 1px solid var(--color-brown);
  border-radius: 0 0 10px 0;
}

.c_table_1 td .img {
  width: 140px;
  border-radius: 5px;
}

.c_table_1 td .p + .p {
  margin-top: 8px;
}

.c_table_2 {
  width: 100%;
  border-collapse: inherit;
}

.c_table_2 th,
.c_table_2 td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.c_table_2 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}

.c_table_2 tr:first-of-type th:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.c_table_2 tr:first-of-type th:nth-of-type(n+2) {
  width: 358px;
  border-radius: 10px 10px 0 0;
}

.c_table_2 tr:not(:first-of-type):not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}

.c_table_2 tr .last_th {
  border-radius: 0 0 0 10px;
}

.c_table_2 tr:first-of-type th:nth-child(1) {
  background-color: transparent;
}

.c_table_2 tr:first-of-type th:last-of-type {
  background-color: var(--color-main);
  position: relative;
  font-size: 20px;
  padding-bottom: 14px;
  /*border-top: 10px solid var(--color-main);*/
}

.c_table_2 tr:first-of-type th:last-of-type::before {
  position: absolute;
  top: -8px;
  left: 0;
  content: "";
  display: block;
  width: 358px;
  height: 276px;
  border: 4px solid var(--color-main);
  border-top: 10px solid var(--color-main);
  border-radius: 10px 10px 0 0;
  background-color: rgba(246, 142, 6, 0.04);
}

.c_table_2 tr:nth-child(2) th:nth-child(1) {
  border-radius: 10px 0 0 0;
}

.c_table_2 tr td {
  border-right: 1px solid var(--color-brown);
  font-size: 15px;
  font-weight: var(--font-medium);
  line-height: 1.6;
}

.c_table_2 tr:nth-of-type(n+3) td {
  border-top: 1px solid var(--color-brown);
}

.c_table_2 tr:last-of-type td {
  border-bottom: 1px solid var(--color-brown);
  padding-left: 30px;
  padding-right: 30px;
}

.c_table_2 tr:last-of-type td:last-of-type {
  border-radius: 0 0 10px 0;
}

.c_table_2 .highlight {
  color: var(--color-main);
}

.c_table_2 .table_list {
  margin-top: 15px;
}

.c_table_2 .table_list .table_list_item {
  display: flex;
  align-items: center;
}

.c_table_2 .table_list .table_list_item::before {
  display: block;
  content: "";
  border-radius: 9999px;
  width: 7px;
  height: 7px;
  background-color: var(--color-brown);
  margin-right: 5px;
}

.c_table_3 {
  width: 100%;
  border-collapse: inherit;
  border-bottom: 1px solid var(--color-brown);
}
.c_table_3 th,
.c_table_3 td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.c_table_3 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}
.c_table_3 tr .last_th {
  border-radius: 0 0 0 10px;
}
.c_table_3 tr td {
  border-right: 1px solid var(--color-brown);
  font-size: 15px;
  line-height: 1.6;
  font-weight: var(--font-medium);
  background-color: #fff;
}
.c_table_3 tr td .txt {
  color: var(--color-14);
}
.c_table_3 tr td .btn {
  margin: 0 auto;
}
.c_table_3 tr:nth-of-type(n+2) th {
  padding: 25px 10px;
}
.c_table_3 tr:nth-of-type(n+3) td {
  border-top: 1px solid var(--color-brown);
}
.c_table_3 tr:first-of-type th:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.c_table_3 tr:first-of-type th:nth-child(1) {
  /*border-radius: 10px 0 0 0;*/
  width: 243px;
}
.c_table_3 tr:first-of-type th:nth-child(2) {
  width: 391px;
}
.c_table_3 tr:first-of-type th:nth-child(3), .c_table_3 tr:first-of-type th:nth-child(4) {
  width: 98px;
}
.c_table_3 tr:first-of-type th:last-of-type {
  /*border-radius: 0 10px 0 0;*/
  width: 249px;
}
.c_table_3 tr:nth-child(2) th:nth-child(1) {
  /*border-radius: 10px 0 0 0;*/
}
.c_table_3 tr:nth-child(4) td {
  border-top: 1px solid var(--color-brown);
}
/*.c_table_3 tr:nth-child(5) td {
  border-top: 2px solid var(--color-brown);
}
  */
.c_table_3 tr:nth-child(5) td:nth-of-type(n+3) {
  border-bottom: 1px solid var(--color-brown);
}
/*.c_table_3 tr:nth-child(5) td:last-of-type {
  border-radius: 0 0 10px 0;
}*/
.c_table_3 tr:not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}
/*.c_table_3 tr:last-of-type td {
  border-bottom: 1px solid var(--color-brown);
}*/
.c_table_3 + .c_table_3 {
  margin-top: 50px;
}

.c_table_4 {
  width: 100%;
  border-collapse: inherit;
}
.c_table_4 th,
.c_table_4 td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.c_table_4 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}
.c_table_4 tr td {
  border-right: 1px solid var(--color-brown);
  font-size: 15px;
  line-height: 1.6;
  font-weight: var(--font-medium);
  padding: 10px 26px;
}
.c_table_4 tr td:nth-of-type(1) {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: left;
  border-left: 1px solid var(--color-brown);
}
.c_table_4 tr td .txt {
  color: var(--color-14);
}
.c_table_4 tr td .mark {
  font-size: 24px;
}
.c_table_4 tr td .btn {
  margin: 0 auto;
}
.c_table_4 tr:nth-of-type(n+3) td {
  border-top: 1px solid var(--color-brown);
}
.c_table_4 tr:first-of-type th:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.c_table_4 tr:first-of-type th:nth-child(1) {
  border-radius: 10px 0 0 0;
  width: 420px;
}
.c_table_4 tr:first-of-type th:nth-child(2) {
  width: 142px;
}
.c_table_4 tr:first-of-type th:last-of-type {
  border-radius: 0 10px 0 0;
  width: 335px;
}
.c_table_4 tr:nth-child(2) th:nth-child(1) {
  /*border-radius: 10px 0 0 0;*/
}
.c_table_4 tr:last-of-type td:nth-of-type(1) {
  border-radius: 0 0 0 10px;
}
.c_table_4 tr:last-of-type td:last-of-type {
  border-radius: 0 0 10px 0;
}
.c_table_4 tr:not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}
.c_table_4 tr:last-of-type td {
  border-bottom: 1px solid var(--color-brown);
}
.c_table_4 + .c_table_3 {
  margin-top: 50px;
}

.c_table_5 {
  width: 100%;
  border-collapse: inherit;
}
.c_table_5 th,
.c_table_5 td {
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
}
.c_table_5 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}
.c_table_5 tr td {
  border-right: 1px solid var(--color-brown);
  border-top: 1px solid var(--color-brown);
  font-size: 14px;
  line-height: 1.6;
  font-weight: var(--font-medium);
  background-color: #fff;
}
.c_table_5 tr td .txt {
  color: var(--color-14);
}
.c_table_5 tr td .btn {
  margin: 0 auto;
  width: 100%;
}
/*.c_table_5 tr:first-of-type th {
  border-radius: 10px 10px 0 0;
}*/
.c_table_5 tr:first-of-type th:not(:last-of-type) {
  /*border-right: 1px solid #fff;*/
}
.c_table_5 tr:not(:first-of-type) th {
  border-top: 1px solid #fff;
}
/*.c_table_5 tr:last-of-type th {
  border-radius: 0 0 0 10px;
}*/
.c_table_5 tr:last-of-type td {
  /*border-radius: 0 0 10px 0;*/
  border-bottom: 1px solid var(--color-brown);
}

.c_table_6 {
  width: 100%;
  border-collapse: inherit;
}
.c_table_6 th,
.c_table_6 td {
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
}
.c_table_6 th {
  background-color: var(--color-04);
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-bold);
}
.c_table_6 tr td {
  border-right: 1px solid var(--color-brown);
  border-top: 1px solid var(--color-brown);
  font-size: 14px;
  line-height: 1.6;
  font-weight: var(--font-medium);
  background-color: #fff;
}
.c_table_6 tr td .txt {
  color: var(--color-14);
}
.c_table_6 tr td .mark {
  font-size: 24px;
}
.c_table_6 tr td .btn {
  margin: 0 auto;
  width: 100%;
}
.c_table_6 tr:first-of-type th {
  border-radius: 10px 10px 0 0;
}
.c_table_6 tr:first-of-type th:not(:last-of-type) {
  /*border-right: 1px solid #fff;*/
}
.c_table_6 tr:not(:first-of-type) th {
  border-top: 1px solid #fff;
}
.c_table_6 tr:last-of-type th {
  border-radius: 0 0 0 10px;
}
.c_table_6 tr:last-of-type td {
  border-radius: 0 0 10px 0;
  border-bottom: 1px solid var(--color-brown);
}

.table + .sp_table {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .c_scroll_table {
    white-space: nowrap;
    overflow: auto;
    margin-bottom: 20px;
  }
  .c_scroll_table .table {
    width: 880px;
  }
}

.sp_table {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_table {
    display: table;
  }
}
.sp_table + .table {
  margin-top: 50px;
}

/* =================================
 block
================================= */
.c_block1 {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 35px 75px 53px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_block1 {
    /*border-radius: 0 0 20px 20px;*/
    padding: 20px 15px 30px;
  }
}

/* =================================
 list
================================= */
.c_list_1 .c_list_1_item {
  display: flex;
  font-size: 16px;
  line-height: 2;
}
.c_list_1 .c_list_1_item + .c_list_1_item {
  margin-top: 3px;
}
.c_list_1 .c_list_1_item .subhead {
  font-size: 20px;
  font-weight: var(--font-bold);
}
.c_list_1 .c_list_1_item .subhead .highlight {
  font-size: 24px;
  background-image: linear-gradient(transparent 87%, var(--color-06) 13%);
}
.c_list_1 .c_list_1_item .c_list_1_txt {
  font-weight: var(--font-regular);
}
.c_list_1 .c_list_1_item::before {
  display: block;
  background-image: url("../images/p_top/icon_check.svg");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  margin-top: 9px;
  flex-shrink: 0;
}
.c_list_1.c_list_1--pt1 .c_list_1_item::before {
  width: 19px;
  height: 17px;
  margin-right: 10px;
  margin-top: 18px;
}
.c_list_1.c_list_1--pt1 .c_list_1_item + .c_list_1_item {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .c_list_1 .c_list_1_item .subhead {
    font-size: 18px;
  }
  .c_list_1 .c_list_1_item .subhead .highlight {
    font-size: 20px;
  }
}

.c_list_2 .c_list_2_item {
  display: flex;
}
.c_list_2 .c_list_2_item::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 5px;
  margin-top: 12px;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: var(--color-02);
}
.c_list_2 .c_list_2_item + .c_list_2_item {
  margin-top: 3px;
}

/* =================================
 item
================================= */
/* =================================
 link
================================= */
.c_out_link_1 {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c_out_link_1::after {
  content: "";
  margin-left: 5px;
  width: 14px;
  height: 14px;
  background-image: url("../images/p_top/icon_outlink.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
.c_out_link_1--blue::after {
  background-image: url("../images/p_top/icon_outlink_blue.svg");
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  overflow-x: hidden;
}

/* =================================
 l_header
================================= */
.l_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 12px 28px 10px 16px;
  position: fixed;
  top: 0;
  z-index: 4;
  background-color: #fff;
  min-width: 1100px;
}

.l_header .logo {
  display: flex;
  align-items: center;
}

.l_header .certification {
  margin-left: 20px;
}

.l_header .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
}

.l_header .list .item + .item {
  margin-left: 25px;
}

.l_header .list .item .tel_link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_header .list .item .tel_link .num {
  font-size: 32px;
  font-family: var(--font-en), sans-serif;
  font-weight: var(--font-medium);
  color: var(--color-brown);
}

.l_header .list .time {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .l_header .logo .link {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .l_header .logo .link:hover {
    opacity: 0.7;
  }

  .l_header .list .item .tel_link {
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .l_header .list .item .link:hover {
    opacity: 0.7;
  }
}
/*@media screen and (max-width: 1200px) {*/
@media screen and (max-width: 767px) {
  .l_header .list .item:has(.tel_link):nth-of-type(1) {
    display: none;
  }
  .l_header .list .item:has(.btn):nth-of-type(2) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l_header {
    height: 65px;
    min-width: unset;
  }
  .l_header .logo .link .img {
    width: 220px;
  }
  .l_header .logo .certification {
    display: none;
  }
}
/* =================================
 hambarger_btn
================================= */
.hambarger_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hambarger_btn .open_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hambarger_btn .open_btn .item + .item {
  margin: 9px 0 0 0;
}

.hambarger_btn .item {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-brown);
}

.hambarger_btn .close_btn {
  width: 100%;
  height: 100%;
}

.hambarger_btn .close_btn .item {
  width: 32px;
}

.hambarger_btn .close_btn .item:nth-child(1) {
  position: absolute;
  left: -4;
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hambarger_btn .close_btn .item:nth-child(2) {
  position: absolute;
  left: -24px;
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .hambarger_btn:hover {
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    opacity: .7;
  }
}
/* =================================
 sp_menu
================================= */
.sp_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  justify-content: center;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 72px 0 0;
  background-color: var(--color-sub);
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.7s 0.5s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: opacity 0.7s 0.5s, transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.sp_menu.open {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
  transition: opacity 0.4s 0s, transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s;
}

.sp_list_wrap {
  display: flex;
}

.sp_menu .list {
  font-size: 16px;
}

.sp_menu .list + .list {
  margin-left: 60px;
}

.sp_menu .list .item {
  width: 100%;
}

.sp_menu .list .item + .item {
  margin-top: 50px;
}

.sp_menu .list .item .link {
  position: relative;
  padding-left: 22px;
  display: block;
}

.sp_menu .list .item .link::before {
  content: "";
  background-image: url("../images/p_top/icon_circle.svg");
  width: 12px;
  height: 14px;
  display: block;
  margin-right: 5px;
  position: absolute;
  top: 6px;
  left: 0;
}

.sp_menu .list .item .link .sub,
.sp_menu .list .item .link .main {
  display: block;
}

.sp_menu .list .item .link .sub {
  margin-bottom: 5px;
}

.sp_menu .list .item .link .main {
  font-size: 20px;
}

.sp_menu .list .item.sns-logo img {
  width: 30px;
}

/*@media screen and (max-width: 1200px) {*/
@media screen and (max-width: 767px) {
  .sp_menu {
    justify-content: flex-start;
    overflow-y: scroll;
  }
  .sp_menu .sp_list_wrap {
    flex-direction: column;
    padding: 20px 15px;
  }
  .sp_menu .list {
    /*font-size: 16px;*/
  }
  .sp_menu .list .item {
    height: 60px;
  }
  .sp_menu .list .item + .item {
    margin-top: 0;
  }
  .sp_menu .list .item .link {
    /*padding-left: 22px;*/
  }
  .sp_menu .list .item .link::before {
    content: "";
    background-image: url("../images/p_top/icon_circle.svg");
    width: 12px;
    height: 14px;
    display: block;
    margin-right: 5px;
    position: absolute;
    top: 4px;
    left: 0;
  }
  .sp_menu .list .item .link .sub {
    font-size: 14px;
    /*margin-bottom: 5px;*/
  }
  .sp_menu .list .item .link .main {
    font-size: 18px;
  }
  .sp_menu .list + .list {
    margin-left: 0;
    /*margin-top: 50px;*/
  }
  .sp_menu .list .cta_link {
    width: 100%;
  }
  .sp_menu .list .tel_link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sp_menu .list .tel_link .num {
    font-size: 32px;
    font-family: var(--font-en), sans-serif;
    font-weight: var(--font-medium);
    color: var(--color-brown);
  }
  .sp_menu .list .time {
    font-size: 12px;
  }
}
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_briefing_sec
================================= */
.l_briefing_sec {
  position: relative;
  width: 100%;
  padding: 47px 0;
  background-image: url("../images/p_top/briefing_bg.jpg");
  background-size: cover;
}
.l_briefing_sec .box {
  padding: 32px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
.l_briefing_sec .box .top {
  text-align: center;
}
.l_briefing_sec .box .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.l_briefing_sec .box .bottom .left {
  border-right: 1px solid var(--color-07);
  padding-right: 60px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.l_briefing_sec .box .bottom .right {
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.l_briefing_sec .box .bottom .right .info_box {
  text-align: center;
}
.l_briefing_sec .box .bottom .right .tel {
  display: flex;
  align-items: center;
  font-size: 37px;
  font-family: var(--font-en), sans-serif;
}
.l_briefing_sec .box .bottom .right .tel .num {
  font-size: 40px;
  margin-left: 5px;
}
.l_briefing_sec .box .bottom .right .time {
  font-size: 13px;
	line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l_briefing_sec .box .bottom .right .tel {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .l_briefing_sec {
    position: relative;
    background-position: top left -100px;
  }
  .l_briefing_sec .box {
    padding: 40px 15px;
  }
  .l_briefing_sec .box .bottom {
    margin-top: 26px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l_briefing_sec .box .bottom .left {
    border-right: none;
    border-bottom: 1px solid #277193;
    padding-right: 0;
    padding-bottom: 25px;
    width: 100%;
  }
  .l_briefing_sec .box .bottom .right {
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .l_briefing_sec .box .bottom .right .tel {
    justify-content: center;
  }
  .l_briefing_sec .box .bottom .right .tel .num {
    font-size: 28px;
  }
}

/* =================================
 l_footer
================================= */
.l_footer {
  width: 100%;
  position: relative;
  background-color: var(--color-sub);
}
.l_footer .top .inner {
  padding: 36px 0 31px;
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}
.l_footer .top .inner .sns-link img {
  width: 40px;
}
.l_footer .top .link {
  display: block;
}
.l_footer .top .link .img {
  /*width: 263px;*/
}
.l_footer .bottom {
  background-color: var(--color-22);
  padding: 8px 0;
}
.l_footer .bottom .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.l_footer .bottom .list .item .link {
  color: #fff;
  text-decoration: underline;
  position: relative;
}
.l_footer .bottom .copyright {
  font-family: var(--font-en), sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l_footer {
    /*width: 100%;*/
    /*position: relative;*/
    /*background-color: var(--color-sub);*/
  }
  .l_footer .top .inner {
    padding: 30px 15px;
  }
  .l_footer .top .link {
    text-align: center;
    /*display: block;*/
  }
  .l_footer .top .link .img {
    /*width: 263px;*/
  }
  .l_footer .bottom {
    padding: 15px;
  }
  .l_footer .bottom .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .l_footer .bottom .copyright {
    margin-top: 15px;
  }
}

/* =================================
 modal
================================= */
.modaal-container {
  border: 3px solid var(--color-02);
  border-radius: 20px;
}

.modaal-content-container {
  padding: 40px 50px;
}

.modal_box .modal_head {
  color: var(--color-main);
  font-weight: var(--font-bold);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.modal_box .modal_lead .highlight {
  font-weight: var(--font-bold);
}
.modal_box .modal_img {
  margin-top: 30px;
  text-align: center;
}
.modal_box .modal_img .img {
  border-radius: 10px;
  max-width: 360px;
}

.modaal-wrapper .modaal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-23);
  width: 32px;
  height: 32px;
  border-radius: 9999px;
}

.modaal-close::after,
.modaal-close::before {
  display: block;
  content: " ";
  position: absolute;
  top: 11px;
  left: 16px;
  width: 1px;
  height: 10px;
  border-radius: 0;
  background: var(--color-brown);
  /*-webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out;*/
}

@media screen and (max-width: 767px) {
  .modaal-content-container {
    padding: 15px 20px;
  }

  .modal_box .modal_head {
    /*font-size: 20px;*/
    /*line-height: 1.5;*/
    /*margin-bottom: 16px;*/
  }
  .modal_box .modal_lead .highlight {
    /*font-weight: var(--font-bold);*/
  }
  .modal_box .modal_img {
    /*margin-top: 30px;*/
    /*text-align: center;*/
  }
  .modal_box .modal_img .table_img,
  .modal_box .modal_img .img {
    /*border-radius: 10px;*/
    /*max-width: 360px;*/
    width: 100%;
  }

  .modaal-wrapper .modaal-close {
    top: -15px;
    right: -15px;
  }
}
/* =================================
 c_gotop
================================= */
.c_gotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  z-index: 100;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
