@charset "UTF-8";
/* reset */
:root {
  --body-bg-color: #ffffff;
  --body-text-color: #323232;
  --color-white: #ffffff;
  --color01: #00348c;
  --color02: #a40000;
  --color03: #f3eee3;
  --color04: #b39550;
  --color05: #e8eef3;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  font-size: 16px;
}
@media screen and (max-width: 1119px) {
  html {
    height: -webkit-fill-available;
  }
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  text-align: left;
  overflow-x: hidden;
  /* set */
  background-color: var(--body-bg-color);
  color: var(--body-text-color);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
@media screen and (max-width: 1119px) {
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

p:not([class]) {
  margin-bottom: 1rem;
}

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

ol:not([class]), ul:not([class]), dl:not([class]) {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol:not([class]) ol, ul:not([class]) ul, ol:not([class]) ul, ul:not([class]) ol {
  margin-bottom: 0;
}

ul[role=list],
ol[role=list] {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

dd:not([class]) {
  margin-bottom: 0.5rem;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  color: var(--body-text-color);
  background-color: transparent;
  text-decoration: underline;
}

a[class] {
  background-color: transparent;
  color: inherit;
}

a[class] {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-underline-offset: 0.5em;
  color: var(--body-text-color);
  word-break: break-all;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  vertical-align: middle;
  border-style: none;
  -webkit-backface-visibility: hidden;
  height: auto;
}

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

img,
picture {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

summary[class]::-webkit-details-marker {
  display: none;
}

[contenteditable] {
  outline: none;
}

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;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* style */
@media screen and (max-width: 450px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp_only {
    display: inherit;
  }
}

@media screen and (max-width: 1119px) {
  .pc_tab_only {
    display: none;
  }
}

.sp_tab_only {
  display: none;
}
@media screen and (max-width: 1119px) {
  .sp_tab_only {
    display: inherit;
  }
}

/****************************
contents_container
****************************/
.contents_container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1920px;
}

/****************************
header
****************************/
header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
}
header .header_flex {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  min-width: 200px;
  margin-left: 30px;
  font-size: 19px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  flex-shrink: 1;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
}
header nav.pc_menu {
  display: none;
  flex-grow: 1;
}
@media screen and (min-width: 1280px) {
  header nav.pc_menu {
    display: flex;
    flex-grow: 1;
  }
}
header nav.pc_menu .menu {
  margin-right: -10px;
  font-size: 8px;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
}
header nav.pc_menu .menu li {
  margin: 9px 12px;
}
header nav.pc_menu .menu li span {
  display: block;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
header nav.pc_menu .menu li span.en {
  margin: 0 0 5px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.57px;
}
header nav.pc_menu .menu li span.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.9px;
}
header nav.pc_menu .menu a {
  text-decoration: none;
  transition: all 0.2s;
}
header nav.pc_menu .menu a:hover {
  opacity: 0.7;
  transition: all 0.2s;
}
header .header_button a {
  width: 210px;
  height: 65px;
  padding-right: 19px;
  color: #fff;
  letter-spacing: 0.78px;
  font-size: 12px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  display: flex;
  justify-content: end;
  align-items: center;
  background: url(../images/header_button_bg.png) no-repeat;
  background-size: cover;
  transition: all 0.2s;
}
header .header_button a:hover {
  opacity: 0.7;
  transition: all 0.2s;
}

/****************************
sp_menu
****************************/
#wrapper {
  overflow: hidden;
}

.sp_menu {
  /* ハンバーガーボタンのデザイン */
  /* ハンバーガーボタン内の線 */
  /* 展開時のデザイン */
  /* メニューのデザイン */
  /* ハンバーガーメニュー展開時、背景を固定 */
}
@media screen and (min-width: 1280px) {
  .sp_menu {
    display: none;
  }
}
.sp_menu .drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  display: block;
}
.sp_menu .drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}
.sp_menu .drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.sp_menu .drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.sp_menu .drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
.sp_menu .drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_menu .drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.sp_menu .drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp_menu .drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.sp_menu .drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.sp_menu .drawer__nav__inner {
  position: relative;
  width: 60vw;
  height: 100vh;
  margin: 0 0 0 auto;
  padding: 3rem 1.5rem 1rem;
  background-color: white;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 750px) {
  .sp_menu .drawer__nav__inner {
    width: 100%;
    padding: 1rem 1.5rem 1rem;
  }
}
.sp_menu .drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.sp_menu .drawer__nav__menu {
  list-style: none;
  margin: 0 auto;
  padding-left: 0;
  max-width: 750px;
}
.sp_menu .drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}
.sp_menu ul li {
  margin: 9px 12px;
}
.sp_menu ul li span {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.sp_menu ul li span.en {
  margin: 0 1em 5px 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: 0.57px;
}
.sp_menu ul li span.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.9px;
}
.sp_menu body.active {
  height: 100%;
  overflow: hidden;
}
.sp_menu .fv_button {
  margin: 30px auto 0;
  width: 407px;
}
@media screen and (max-width: 750px) {
  .sp_menu .fv_button {
    width: 100%;
  }
  .sp_menu .fv_button .kakomi {
    left: calc(50% - 136px);
  }
}
@media screen and (max-width: 450px) {
  .sp_menu .fv_button.first a {
    background-position: right -4.1vw center;
  }
}

/****************************
infinity-scroll
****************************/
.mv {
  padding-top: 93px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .mv {
    padding-top: 55px;
  }
}

@keyframes infinity-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-loop-slider {
  overflow: hidden;
}

.c-loop-slider__wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.c-loop-slider__items {
  display: flex;
  animation: infinity-scroll 70s linear infinite both;
}

.c-loop-slider__items img {
  margin-right: 3px;
  width: auto;
  height: 549px;
}
@media screen and (max-width: 750px) {
  .c-loop-slider__items img {
    height: 422px;
  }
}

/****************************
fv_text
****************************/
.fv_text {
  padding-top: 42px;
  padding-left: 73px;
  width: 579px;
  position: absolute;
  top: 90px;
  right: calc(50% - 39px);
  z-index: 10;
}
@media screen and (max-width: 1095px) {
  .fv_text {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .fv_text {
    width: 322px;
    margin-left: 10px;
    padding: 20px;
    top: 55px;
  }
}
.fv_text::before {
  width: 579px;
  height: 100%;
  content: "";
  display: block;
  box-shadow: 0px 0px 16px 0px rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0.95;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .fv_text::before {
    box-shadow: 0px 0px 16px 0px rgba(255, 255, 255, 0.9);
  }
}
@media screen and (max-width: 750px) {
  .fv_text::before {
    width: 322px;
    left: 0;
    right: 0;
  }
}
.fv_text .main_text {
  opacity: 1;
}
.fv_text .main_text h2 {
  font-size: 36px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .fv_text .main_text h2 {
    font-size: 20px;
  }
}
.fv_text .main_text p {
  margin: 60px 0 50px;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.82px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .fv_text .main_text p {
    margin: 30px 0 35px;
    font-size: 14px;
  }
}
.fv_text .main_text p span {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .fv_text .main_text p span {
    font-size: 18px;
  }
}

.fv_button {
  width: 495px;
  position: relative;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .fv_button {
    width: 100%;
  }
}
.fv_button .kakomi {
  color: #2b2b2b;
  text-shadow: none;
  background-color: #fff;
  border: 2px solid #c0c3c6;
  border-radius: 48px;
  width: 386px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -18px;
  left: 4px;
}
@media screen and (max-width: 750px) {
  .fv_button .kakomi {
    width: 272px;
    font-size: 13px;
  }
}
.fv_button span {
  font-size: 35px;
}
@media screen and (max-width: 750px) {
  .fv_button span {
    font-size: 26px;
  }
}
.fv_button a {
  margin-bottom: 22px;
  padding: 24px 0 10px;
  width: 407px;
  font-size: 16px;
  letter-spacing: 1.64px;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 11px;
  text-align: center;
  text-shadow: 0 0 16px black;
  color: #fff;
  text-decoration: none;
  display: block;
  border-radius: 10px;
  box-shadow: 0px 16px 12px -10px rgb(115, 97, 61);
  transition: all 0.2s;
}
@media screen and (max-width: 750px) {
  .fv_button a {
    width: 100%;
    font-size: 14px;
  }
}
.fv_button a:hover {
  translate: 0 3px;
  box-shadow: none;
  transition: all 0.2s;
}
.fv_button.first a {
  height: 103px;
  background: url(../images/fv_button_first.png) no-repeat center center;
  background-size: cover;
}
.fv_button.second a {
  height: 66px;
  background: url(../images/fv_button_second.png) no-repeat center;
  background-size: cover;
}

/****************************
section01
****************************/
.section01 {
  padding: 95px 0;
}
@media screen and (max-width: 750px) {
  .section01 {
    padding: 50px 0;
  }
}
.section01 .inner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 949px;
}
.section01 .border_box {
  padding: 37px 64px 35px;
  border: 1px solid #4a536b;
  border-radius: 12px;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .section01 .border_box {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 30px 0;
    display: block;
  }
}
.section01 .img_box {
  width: 321px;
  flex-basis: 321px;
}
.section01 .img_box img {
  width: 321px;
}
@media screen and (max-width: 750px) {
  .section01 .img_box {
    width: auto;
  }
  .section01 .img_box img {
    width: auto;
    margin: 0 auto;
  }
}
.section01 .text_box {
  padding: 16px 0 10px;
  line-height: 1.7;
  flex-grow: 1;
  flex: 1;
}
.section01 .text_box h3 {
  font-size: 26px;
  line-height: 1.72;
  margin-bottom: 50px;
}
@media screen and (max-width: 450px) {
  .section01 .text_box h3 {
    font-size: 4.5vw;
    margin-bottom: 25px;
  }
}
.section01 .text_box p {
  font-size: 14px;
  line-height: 1.85;
}
.section01 .text_box p span {
  margin: 0.5em 0 0;
  display: block;
}

/****************************
section02
****************************/
.section02 {
  padding: 70px 0;
  background-color: #ece6e6;
}
@media screen and (max-width: 750px) {
  .section02 {
    padding: 40px 0;
  }
}
.section02 .inner {
  margin: 0 auto;
  max-width: 1236px;
}
.section02 h3 {
  margin-bottom: 50px;
  font-size: 24px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section02 h3 {
    font-size: 4.2vw;
    margin-bottom: 30px;
  }
}
.section02 h3::after, .section02 h3::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #323232;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 750px) {
  .section02 h3::after, .section02 h3::before {
    height: 10.6vw;
  }
}
.section02 h3::after {
  transform: rotate(-45deg);
  left: calc(50% - 9.5em);
}
.section02 h3::before {
  transform: rotate(45deg);
  left: calc(50% + 9.3em);
}
.section02 ul {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section02 ul li {
  margin: 0 8px 20px;
  width: 293px;
}
@media screen and (max-width: 750px) {
  .section02 ul li {
    padding: 0 0.3vw 1vw;
    width: 41vw;
  }
}
.section02 .button a {
  margin: 0 auto;
  padding-right: 40px;
  width: 380px;
  height: 63px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1.54px;
  font-weight: bold;
  background: url(../images/button_section02.png) no-repeat;
  background-size: cover;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 16px 12px -10px rgb(115, 97, 61);
  transition: all 0.2s;
}
@media screen and (max-width: 750px) {
  .section02 .button a {
    padding: 0;
    width: 80%;
    font-size: 14px;
    background-position: 0 center;
  }
}
.section02 .button a:hover {
  translate: 0 3px;
  box-shadow: none;
  transition: all 0.2s;
}

/****************************
section03
****************************/
.section03 {
  padding: 70px 0;
  background: url(../images/onayami_bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .section03 {
    padding: 40px 0;
  }
}
.section03 .inner {
  margin: 0 auto;
  max-width: 1397px;
}
@media screen and (max-width: 750px) {
  .section03 .inner {
    padding: 0 20px;
  }
}
.section03 h3 {
  margin-bottom: 50px;
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section03 h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.section03 ul {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section03 ul li {
  margin: 0 30px;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section03 ul li.worries01 {
  padding-top: 20px;
  min-width: 352px;
  height: 144px;
  background: url(../images/kumo_01.png) no-repeat;
  background-size: cover;
}
.section03 ul li.worries02 {
  min-width: 352px;
  height: 118px;
  background: url(../images/kumo_02.png) no-repeat;
  background-size: cover;
}
.section03 ul li.worries03 {
  min-width: 353px;
  height: 92px;
  background: url(../images/kumo_03.png) no-repeat;
  background-size: cover;
}
.section03 ul li.worries04 {
  min-width: 352px;
  height: 118px;
  background: url(../images/kumo_04.png) no-repeat;
  background-size: cover;
}
.section03 ul li.worries05 {
  min-width: 352px;
  height: 103px;
  background: url(../images/kumo_05.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .section03 ul li:nth-child(odd) {
    margin-left: -15px;
  }
  .section03 ul li:nth-child(even) {
    margin-right: -15px;
  }
  .section03 ul li:nth-child(n+2) {
    margin-top: -5px;
  }
}
.section03 .text_box {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section03 .text_box {
    font-size: 16px;
  }
}
.section03 .text_box .txt-b {
  margin: 0 0 50px;
  font-weight: bold;
  line-height: 1.9;
}
.section03 .text_box .txt02 {
  margin: 0 0 40px;
}
.section03 .text_box .txt02 span {
  font-size: 20px;
  line-height: 1.9;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .section03 .text_box .txt02 span {
    font-size: 16px;
  }
}
.section03 .text_box .txt02 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background-color: #e8dbdb;
  margin: -25px 0 0;
}
.section03 .text_box .txt03 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.845;
}
@media screen and (max-width: 750px) {
  .section03 .text_box .txt03 {
    font-size: 16px;
  }
}
.section03 .text_box .txt03 span {
  font-size: 26px;
  line-height: 1.73;
  background-color: #e8dbdb;
}
@media screen and (max-width: 750px) {
  .section03 .text_box .txt03 span {
    font-size: 20px;
  }
}

/****************************
section04
****************************/
.section04 {
  padding: 70px 0;
  background-color: #f5f2ef;
}
@media screen and (max-width: 750px) {
  .section04 {
    padding: 40px 0;
  }
  .section04 .inner {
    padding: 0 20px;
  }
}
.section04 h3 {
  margin: 0 0 70px;
  font-size: 22px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section04 h3 {
    margin: 0 0 40px;
    font-size: 18px;
  }
}
.section04 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section04 ul li {
  margin: 0 9px 9px;
  padding: 20px 17px 30px;
  width: 386px;
  border: 1px solid #4a536b;
  background-color: #fff;
}
.section04 .case {
  margin: 0 0 18px;
  font-size: 16px;
}
.section04 .case span {
  font-size: 22px;
}
.section04 h4 {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.section04 .img_box img {
  margin: 0 auto 17px;
  width: 268px;
}
.section04 .subheading {
  color: #9e878d;
  font-family: "Ms Madi", cursive;
  font-size: 26px;
}
.section04 .text_box {
  margin-top: -12px;
  padding: 11px 11px 7px 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.75;
}
.section04 .text_box p {
  margin-bottom: 0;
}
.section04 .text_box span {
  font-weight: bold;
}
.section04 .before .text_box {
  background-color: #f5f2ef;
  border-radius: 8px;
}
.section04 .before::after {
  margin-top: 12px;
  content: "";
  display: block;
  width: 100%;
  height: 14.7px;
  background: url(../images/icon_arrow_under.png) no-repeat center;
  background-size: contain;
}
.section04 .after {
  margin: -11px 0 30px;
}
.section04 .after .text_box {
  border: 1px solid #b99190;
  border-radius: 8px;
}
.section04 .bottom_text {
  margin: 50px 0 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.865;
}
@media screen and (max-width: 750px) {
  .section04 .bottom_text {
    font-size: 16px;
  }
}
.section04 .button a {
  margin: 0 auto;
  width: 326px;
  height: 38px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  background: url(../images/button_case.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}
.section04 .button a:hover {
  translate: 0 3px;
  box-shadow: none;
  transition: all 0.2s;
}

/****************************
section05 About
****************************/
.inner h2 {
  font-size: 16px;
  line-height: 1;
}
.inner h2 span {
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (max-width: 750px) {
  .inner h2 {
    font-size: 15px;
  }
  .inner h2 span {
    font-size: 34px;
  }
}

.section05 .inner {
  margin: 0;
  padding: 0 20px;
}
.section05 .about_box {
  margin: 0 auto;
  padding: 70px 0 90px;
  max-width: 1042px;
  position: relative;
}
@media screen and (max-width: 1119px) {
  .section05 .about_box {
    padding: 40px 0 50px;
    max-width: 977px;
  }
}
@media screen and (max-width: 950px) {
  .section05 .about_box {
    max-width: 700px;
  }
}
.section05 .about_box .img_box {
  max-width: 456px;
  position: absolute;
  right: 0;
  top: 96px;
}
@media screen and (max-width: 950px) {
  .section05 .about_box .img_box {
    position: relative;
    top: 0;
    margin: 0 auto;
  }
}
.section05 .about_box h2 {
  margin: 0 0 50px;
}
.section05 .about_box .text_box h3 {
  margin: 0 0 50px;
  font-size: 26px;
  line-height: 1.77;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 450px) {
  .section05 .about_box .text_box h3 {
    margin: 0 0 25px;
    font-size: 5.2vw;
  }
}
.section05 .about_box .text_box p {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section05 .about_box .text_box p {
    font-size: 14px;
  }
}
.section05 .road_map_box h3 {
  text-align: center;
  font-size: 32px;
}
@media screen and (max-width: 450px) {
  .section05 .road_map_box h3 {
    font-size: 5.2vw;
  }
}
.section05 .road_map_box h3.heading1 {
  margin: 0 0 32px;
}
.section05 .road_map_box .border_box {
  margin: 0 auto 45px;
  padding: 16px 36px;
  max-width: 977px;
  border: 1px solid #4a536b;
  border-radius: 12px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 450px) {
  .section05 .road_map_box .border_box {
    padding: 16px 16px;
  }
}
.section05 .road_map_box .border_box .table_wrap {
  overflow: hidden;
}
.section05 .road_map_box .border_box .table_wrap table {
  min-width: 900px;
}
.section05 .road_map_box .border_box th {
  padding-bottom: 18px;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
}
.section05 .road_map_box .border_box th.action {
  padding-left: 42px;
}
.section05 .road_map_box .border_box .step {
  background: url(../images/icon_arrow_under.png) no-repeat;
  background-position: top 52px center;
}
.section05 .road_map_box .border_box .step.step1 {
  background-image: url(../images/icon_arrow_under2.png);
  background-position: top 72px center;
}
.section05 .road_map_box .border_box .step.lag {
  background-position: top 59px center;
}
.section05 .road_map_box .border_box .step.x-lag {
  background-position: top 64px center;
}
.section05 .road_map_box .border_box .step.last {
  background-image: none;
}
.section05 .road_map_box .border_box .step p {
  width: 304px;
  height: 38px;
  background-color: #4a536b;
  border-radius: 25px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .section05 .road_map_box .border_box .step p {
    width: 205px;
  }
}
.section05 .road_map_box .border_box .step p span {
  font-size: 20px;
}
.section05 .road_map_box .border_box td.action {
  padding-left: 42px;
  padding-bottom: 20px;
}
@media screen and (max-width: 450px) {
  .section05 .road_map_box .border_box td.action {
    padding-left: 21px;
    padding-bottom: 10px;
  }
}
.section05 .road_map_box .border_box td.action div {
  padding: 13px;
  width: 256px;
  background-color: #f5f2ef;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.69;
}
.section05 .road_map_box .border_box .point {
  padding-bottom: 1.5rem;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.56;
}
.section05 .road_map_box .border_box .point span {
  font-weight: bold;
}
.section05 .road_map_box .border_box .text_box1 {
  margin-top: 30px;
}
.section05 .road_map_box .border_box .text_box1::before {
  margin-bottom: 30px;
  content: "";
  display: block;
  width: 100%;
  height: 26px;
  background: url(../images/icon_arrow_under_big.png) no-repeat center;
  background-size: contain;
}
.section05 .road_map_box .border_box .text_box1 h3 {
  margin: 0 0 15px;
}
.section05 .road_map_box .border_box .text_box1 p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.79;
  text-align: center;
}
.section05 .road_map_box .text_box2 {
  margin: 0 0 50px;
  font-size: 18px;
  line-height: 1.77;
  text-align: center;
}
.section05 .road_map_box .text_box2 p {
  margin-bottom: 2em;
}

.voice_ue {
  width: 100%;
  background: url(../images/voice_ue.webp) repeat-x center;
  background-size: contain;
}
.voice_ue img {
  margin: 0 auto;
}

/****************************
section06 Voice
****************************/
.section06 {
  padding: 70px 0 58px;
  background-color: #f5f2ef;
}
@media screen and (max-width: 750px) {
  .section06 {
    padding: 40px 0 30px;
  }
}
.section06 h2 {
  margin: 0 0 35px;
  text-align: center;
}
.section06 p.sub_txt {
  margin: 0 0 45px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #4a536b;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section06 p.sub_txt {
    font-size: 14px;
  }
}
.section06 ul {
  margin: 0 auto;
  max-width: 1236px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.section06 ul li {
  margin: 0 11px 20px;
  max-width: 285px;
  background-color: #fff;
  box-shadow: 0px 4px 7px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 450px) {
  .section06 ul li {
    width: 85%;
    max-width: none;
  }
}
.section06 .text_box {
  padding: 14px 9px;
  line-height: 1.75;
}
.section06 .text_box h3 {
  margin: 0 0 1.5em;
  color: #9e878d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.section06 .text_box .sub_txt {
  margin: 0 0 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  text-align: center;
  color: #4a536b;
  position: relative;
}
.section06 .text_box .sub_txt span {
  font-size: 12px;
  color: #2b2b2b;
}
.section06 .text_box .sub_txt::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background-color: #c4b8a1;
  position: absolute;
  bottom: -16px;
  left: calc(50% - 29px);
}
.section06 .text_box .subheading {
  color: #9e878d;
  font-family: "Ms Madi", cursive;
  font-size: 30px;
  text-align: left;
  line-height: 1;
}
.section06 .text_box .before::after {
  margin: 10px 0 0;
  content: "";
  display: block;
  height: 17px;
  background: url(../images/icon_arrow_under.png) no-repeat center;
}
.section06 .text_box .after {
  margin: -14px 0 0;
}
.section06 .text_box .text {
  font-size: 10px;
}
.section06 .text_box .text span {
  font-weight: bold;
}
.section06 .txt_bottom {
  padding: 18px;
  background-color: #f5f2ef;
}
.section06 .txt_bottom p {
  margin: 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.8;
  color: #9e878d;
}
.section06 .button a {
  height: 48px;
  color: #fff;
  background-color: #4a536b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.section06 .button a img {
  width: 71px;
}
.section06 .button a:hover {
  opacity: 0.7;
  transition: all 0.2s;
}

/****************************
section07 FEATURES
****************************/
.section07 {
  padding: 70px 0 1px;
  background: url(../images/bg_FEATURE.webp) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .section07 {
    padding: 40px 0 1px;
  }
}
.section07 .inner {
  padding: 0 10px;
}
@media screen and (max-width: 750px) {
  .section07 .inner {
    padding: 0 20px;
  }
}
.section07 h2 {
  margin: 0 0 24px;
  text-align: center;
}
.section07 .sub_txt {
  margin: 0 0 75px;
  color: #4a536b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section07 .sub_txt {
    margin: 0 0 40px;
    font-size: 13.7px;
  }
}
.section07 ul.point_list {
  margin: 0 auto 50px;
  max-width: 1104px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section07 ul.point_list li {
  margin: 0 12px 20px;
  width: 344px;
  background-color: #fff;
  box-shadow: 0 0 16px 0 rgba(235, 218, 218, 0.5);
  text-align: center;
  position: relative;
}
.section07 ul.point_list li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #4a536b;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.section07 ul.point_list li .text_box {
  padding: 22px 28px 0;
}
.section07 ul.point_list li .txt_point {
  margin: 0 0 15px;
  color: #4a536b;
  font-size: 34px;
  font-family: "Italiana", sans-serif;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  text-align: left;
}
@media screen and (max-width: 450px) {
  .section07 ul.point_list li .txt_point {
    font-size: 30px;
  }
}
.section07 ul.point_list li .txt_small {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section07 ul.point_list li .txt_small {
    font-size: 16px;
  }
}
.section07 ul.point_list li .txt_large {
  margin: 0 0 26px;
  font-size: 28px;
  line-height: 1.36;
}
@media screen and (max-width: 450px) {
  .section07 ul.point_list li .txt_large {
    font-size: 22px;
  }
}
.section07 .point_box {
  margin: 0 auto 55px;
  padding: 70px 20px;
  max-width: 1080px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
}
@media screen and (max-width: 450px) {
  .section07 .point_box {
    margin: 0 auto 30px;
    padding: 25px 20px;
  }
  .section07 .point_box#point03 {
    padding-bottom: 0;
  }
}
.section07 .point_box h3 {
  margin: 0 0 35px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 450px) {
  .section07 .point_box h3 {
    font-size: 22px;
  }
}
.section07 .point_box h3 span {
  color: #4a536b;
  font-size: 41px;
  font-family: "Italiana", sans-serif;
  font-weight: normal;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 450px) {
  .section07 .point_box h3 span {
    font-size: 28px;
  }
}
.section07 .point_box h4 {
  margin: 0 0 30px;
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .section07 .point_box h4 {
    font-size: 22px;
  }
}
.section07 .point_box .lead_txt {
  margin: 0 0 60px;
  font-size: 22px;
  text-align: center;
  line-height: 1.59;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .lead_txt {
    font-size: 18px;
    font-size: 4.39vw;
  }
}
.section07 .point_box .lead_txt span {
  background-color: #ece6e6;
}
.section07 .point_box .flex_box {
  margin: 0 auto 70px;
  max-width: 888px;
  display: flex;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .flex_box {
    margin: 0 auto 45px;
    display: block;
  }
  .section07 .point_box .flex_box .img_box img {
    margin: 0 auto 2em;
  }
}
.section07 .point_box .flex_box .text_box {
  flex: 1;
  margin: 0;
  padding-left: 49px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .flex_box .text_box {
    padding-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .flex_box .text_box {
    font-size: 14px;
  }
}
.section07 .point_box .flex_box .text_box span {
  color: #de7392;
  font-weight: bold;
}
.section07 .point_box .flex_box.rev {
  flex-direction: row-reverse;
}
.section07 .point_box .flex_box.rev .text_box {
  padding-left: 0;
  padding-right: 29px;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .flex_box.rev .text_box {
    padding-right: 0;
  }
}
.section07 .point_box .flex_box.point03 .text_box {
  padding-right: 49px;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .flex_box.point03 .text_box {
    padding-right: 0;
  }
}
.section07 .point_box .flex_box .sub_heading {
  margin: 0 0 1em;
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
}
.section07 .point_box ul.kakomi {
  margin: 0 0 70px;
}
.section07 .point_box ul.kakomi li {
  margin: 0 auto 14px;
  padding: 20px 19px;
  max-width: 873px;
  border-radius: 15px;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0px 4px 8px 0px rgb(196, 184, 161);
}
@media screen and (max-width: 450px) {
  .section07 .point_box ul.kakomi li {
    font-size: 14px;
  }
}
.section07 .point_box ul.kakomi li span {
  font-weight: bold;
}
.section07 .point_box ul.kakomi li span.pink_txt {
  color: #de7392;
  font-weight: normal;
}
.section07 .point_box .lecturer_box {
  margin: 0 auto;
  max-width: 945px;
}
.section07 .point_box .lecturer_box h4 {
  margin: 0 0 10px;
}
.section07 .point_box .lecturer_box .sub_txt {
  margin: 0 0 34px;
  color: #535353;
  font-size: 14px;
}
.section07 .point_box .lecturer_box ul.lecturer_list {
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .lecturer_box ul.lecturer_list {
    justify-content: center;
  }
}
.section07 .point_box .lecturer_box ul.lecturer_list li {
  margin: 0 8px 20px;
  width: 119px;
}
.section07 .point_box .lecturer_box ul.lecturer_list li p {
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.3;
}
.section07 .point_box .lecturer_box ul.lecturer_list li p span {
  margin: 0 0 10px;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
}
.section07 .point_box .lecturer_box ul.lecturer_list li p span.line1 {
  padding: 0.5em 0;
}
.section07 .point_box .lecturer_box .bottom_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .lecturer_box .bottom_text {
    font-size: 15px;
  }
}
.section07 .point_box .lecturer_box .bottom_text span {
  margin: 0 0 15px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  display: inline-block;
}
.section07 .point_box .lecturer_box .bottom_text span::after {
  margin-top: -14px;
  content: "";
  display: block;
  height: 8px;
  background-color: #e8dbdb;
}
.section07 .point_box .video_content h4 span {
  font-size: 16px;
}
.section07 .point_box .video_content .top_text {
  margin: 0 0 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
}
.section07 .point_box .video_content .bottom_text {
  margin: 0 0 10px;
  height: 70px;
  color: #4a536b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.section07 .point_box .video_content .bottom_text::after, .section07 .point_box .video_content .bottom_text::before {
  content: "";
  display: block;
  width: 2px;
  height: 84px;
  background-color: #4a536b;
  position: absolute;
  top: -5px;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .video_content .bottom_text::after, .section07 .point_box .video_content .bottom_text::before {
    height: 13vw;
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content .bottom_text::after, .section07 .point_box .video_content .bottom_text::before {
    width: 1px;
    height: 20vw;
  }
}
.section07 .point_box .video_content .bottom_text::before {
  transform: rotate(-34deg);
  left: calc(50% - 231px);
}
@media screen and (max-width: 750px) {
  .section07 .point_box .video_content .bottom_text::before {
    left: calc(50% - 193px);
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content .bottom_text::before {
    left: calc(50% - 140px);
  }
}
.section07 .point_box .video_content .bottom_text::after {
  transform: rotate(34deg);
  left: calc(50% + 231px);
}
@media screen and (max-width: 750px) {
  .section07 .point_box .video_content .bottom_text::after {
    left: calc(50% + 193px);
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content .bottom_text::after {
    left: calc(50% + 140px);
  }
}
.section07 .point_box .video_content .img_box {
  margin: 0 auto;
  max-width: 871px;
}
.section07 .point_box .video_content .img_box p {
  margin: -2em 1.5em 0;
  color: #9e878d;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 1119px) {
  .section07 .point_box .video_content .img_box p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  .section07 .point_box .video_content .img_box p {
    font-size: 12px;
    margin: 1em 0 0;
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content .img_box p {
    font-size: 10px;
  }
}
.section07 .point_box .video_content table {
  margin: 0 auto 79px;
  max-width: 709px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  border-top: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
  border-radius: 4px;
  border-collapse: separate;
  overflow: hidden;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content table {
    margin: 0 auto 40px;
  }
}
.section07 .point_box .video_content table th,
.section07 .point_box .video_content table td {
  padding: 10px 12px;
  border-right: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}
.section07 .point_box .video_content table th:nth-child(-n+2),
.section07 .point_box .video_content table td:nth-child(-n+2) {
  width: 20%;
}
.section07 .point_box .video_content table th {
  background-color: #e8e8eb;
  font-weight: bold;
}
.section07 .point_box .video_content table td:last-child {
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .video_content table td:last-child {
    font-size: 12px;
  }
}
.section07 .point_box .video_content table thead tr:first-child > *:first-child {
  border-radius: 4px 0 0 0;
}
.section07 .point_box .video_content table thead tr:first-child > *:last-child {
  border-radius: 0 4px 0 0;
}
.section07 .point_box .video_content table tbody tr:last-child > *:first-child {
  border-radius: 0 0 0 4px;
}
.section07 .point_box .video_content table tbody tr:last-child > *:last-child {
  border-radius: 0 0 4px 0;
}
.section07 .point_box .beige_box {
  margin: 0 auto 60px;
  padding: 3px;
  border: 1px solid #f8f2f2;
  max-width: 932px;
}
.section07 .point_box .beige_box .inner {
  padding: 30px 43px;
  padding-right: 10px;
  background-color: #e8dbdb;
}
@media screen and (max-width: 750px) {
  .section07 .point_box .beige_box .inner {
    padding: 20px;
  }
}
.section07 .point_box .beige_box .inner p:first-child {
  font-size: 22px;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .beige_box .inner p:first-child {
    font-size: 19px;
  }
}
.section07 .point_box .beige_box .inner p:last-child {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section07 .point_box .beige_box .inner p:last-child {
    font-size: 14px;
  }
}
.section07 .point_box .beige_box .inner img {
  margin-top: -22px;
  margin-left: -15px;
  float: right;
}
@media screen and (max-width: 1119px) {
  .section07 .point_box .beige_box .inner img {
    margin: 0;
  }
}
@media screen and (max-width: 450px) {
  .section07 .point_box .beige_box .inner img {
    float: none;
    margin: 0 auto;
  }
}

/****************************
banner_box
****************************/
.banner_box a {
  margin: 0 auto 44px;
  padding: 22px 20px 11px;
  max-width: 859px;
  background-color: #f5f2ef;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}
@media screen and (max-width: 750px) {
  .banner_box a {
    max-width: 500px;
  }
}
.banner_box a:hover {
  box-shadow: none;
  translate: 0 2px;
  transition: all 0.2s;
}
.banner_box a ul {
  margin: 0 auto;
  max-width: 817px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1119px) {
  .banner_box a ul {
    justify-content: center;
  }
}
.banner_box a ul li {
  margin: 0 2px;
}
.banner_box a .arrow {
  position: absolute;
  top: 38px;
  right: 42px;
}
@media screen and (max-width: 750px) {
  .banner_box a .arrow {
    right: 20px;
  }
}
@media screen and (max-width: 450px) {
  .banner_box a .arrow {
    width: 26px;
    right: 14px;
  }
}
.banner_box a p:nth-child(1) {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 450px) {
  .banner_box a p:nth-child(1) {
    margin-bottom: 0.5em;
    font-size: 14px;
  }
}
.banner_box a p:nth-child(2) {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.36;
}
@media screen and (max-width: 450px) {
  .banner_box a p:nth-child(2) {
    font-size: 20px;
  }
}
.banner_box a p:nth-child(2) img {
  display: inline-block;
  margin-left: 12px;
}
.banner_box a p:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #4a536b;
}
.banner_box .banner_br {
  display: none;
}
@media screen and (max-width: 750px) {
  .banner_box .banner_br {
    display: block;
  }
}
.banner_box.blog a {
  padding-right: 127px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .banner_box.blog a {
    padding-right: 17px;
    display: block;
  }
}
.banner_box.blog a .arrow {
  top: 48px;
}
@media screen and (max-width: 750px) {
  .banner_box.blog a .arrow {
    top: 56px;
  }
}
.banner_box.blog a img {
  margin: 0 auto;
}

/****************************
section08
****************************/
.section08 {
  padding: 120px 0;
  background-color: #e8dbdb;
}
@media screen and (max-width: 750px) {
  .section08 {
    padding: 60px 20px 50px;
  }
}
.section08 .inner {
  margin: 0 auto;
  max-width: 1080px;
}
.section08 .box_wrap {
  margin: 0 auto 54px;
  padding: 30px 47px 38px;
  background-color: #fff;
  border: 1px solid #4a536b;
  display: flex;
}
@media screen and (max-width: 1119px) {
  .section08 .box_wrap {
    display: block;
    max-width: 600px;
  }
}
@media screen and (max-width: 750px) {
  .section08 .box_wrap {
    margin-bottom: 30px;
    padding: 20px 20px 20px;
  }
}
.section08 .left_box {
  max-width: 400px;
  margin-right: 37px;
}
@media screen and (max-width: 1119px) {
  .section08 .left_box {
    margin: 0 auto;
  }
}
.section08 .right_box {
  margin: 0 auto;
  max-width: 547px;
}
.section08 .title_txt {
  padding: 15px 0 25px;
  color: #4a536b;
  font-size: 19px;
  font-weight: bold;
  transform: rotate(-5deg);
}
.section08 .title_txt span {
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 450px) {
  .section08 .title_txt {
    font-size: 3.6vw;
  }
  .section08 .title_txt span {
    font-size: 4.5vw;
  }
}
.section08 .name_txt {
  margin: 12px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  text-align: center;
}
.section08 .name_txt span {
  color: #a95f5f;
  font-size: 14px;
}
.section08 .button a {
  height: 42px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #4a536b;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}
.section08 .button a img {
  position: absolute;
  top: 10px;
  right: 47px;
}
@media screen and (max-width: 750px) {
  .section08 .button a img {
    right: 10px;
  }
}
.section08 .button a:hover {
  box-shadow: none;
  opacity: 0.8;
  translate: 0 2px;
  transition: all 0.2s;
}
.section08 .button.sp_tab_only {
  margin: 20px auto 0;
  max-width: 400px;
}
.section08 .subheading {
  color: #9e878d;
  font-family: "Ms Madi", cursive;
  font-size: 39px;
}
.section08 .inner_box {
  margin-top: -15px;
  margin-left: 16px;
  padding: 1rem 32px;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
.section08 .inner_box span {
  font-weight: bold;
}
.section08 .before .inner_box {
  background-color: #f5f5f5;
  text-align: center;
}
.section08 .before::after {
  margin: 16px 0 0;
  content: "";
  display: block;
  height: 23px;
  background: url(../images/icon_arrow_under.png) no-repeat center;
}
.section08 .after {
  margin-top: -25px;
}
.section08 .after .inner_box {
  border: 1px solid #4a536b;
  position: relative;
}
.section08 .after .inner_box img {
  position: absolute;
  top: 86px;
  right: 26px;
}
@media screen and (max-width: 1119px) {
  .section08 .after .inner_box img {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto;
  }
}
.section08 .bottom_text {
  padding-top: 15px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.64;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section08 .bottom_text {
    font-size: 20px;
  }
}

/****************************
section09 event_report
****************************/
.section09 {
  padding: 70px 10px;
  background: url(../images/event_report_bg.webp) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 450px) {
  .section09 {
    padding: 40px 10px;
  }
}
.section09 .inner {
  padding: 0 10px;
}
.section09 h2 {
  margin: 0 0 24px;
  text-align: center;
}
.section09 .sub_txt {
  margin: 0 0 75px;
  color: #4a536b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .section09 .sub_txt {
    margin: 0 0 40px;
    font-size: 14px;
  }
}
.section09 .inner {
  margin: 0 auto;
  padding: 2px;
  max-width: 1086px;
  border: 1px solid #4a536b;
}
.section09 .report_box {
  padding: 45px 70px 30px 40px;
  background-color: #fff;
  border: 1px solid #4a536b;
}
@media screen and (max-width: 750px) {
  .section09 .report_box {
    padding: 45px 30px 15px;
  }
}
@media screen and (max-width: 450px) {
  .section09 .report_box {
    padding: 30px 20px 15px;
  }
}
.section09 .report_box .box {
  margin: 0 0 50px;
  position: relative;
}
.section09 .report_box .box .time {
  margin: 0 0 20px;
}
.section09 .report_box .box .time span:nth-child(1) {
  font-family: "Ms Madi", cursive;
  font-size: 57px;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .time span:nth-child(1) {
    font-size: 30px;
  }
}
.section09 .report_box .box .time span:nth-child(2) {
  margin-left: 26px;
  padding: 0 0.2em;
  font-size: 36px;
  background-color: #f5f2ef;
  display: inline-block;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .time span:nth-child(2) {
    font-size: 20px;
  }
}
.section09 .report_box .box .text {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .text {
    font-size: 14px;
  }
}
.section09 .report_box .box .text span {
  color: #de7392;
  font-weight: bold;
}
.section09 .report_box .box .text.left {
  margin-left: 50px;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .text.left {
    margin-left: 0;
  }
}
.section09 .report_box .box .text.right {
  margin-left: 440px;
}
@media screen and (max-width: 1119px) {
  .section09 .report_box .box .text.right {
    margin-left: 0;
  }
}
.section09 .report_box .box .img_box {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1119px) {
  .section09 .report_box .box .img_box {
    margin: 1.5em auto 0;
    position: relative;
  }
  .section09 .report_box .box .img_box img {
    margin: 0 auto;
  }
}
.section09 .report_box .box .img_box.right {
  right: 0;
}
.section09 .report_box .box .img_box.left {
  left: 50px;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .img_box.left {
    left: 0;
  }
}
.section09 .report_box .box .img_box.flex {
  top: 20px;
  display: flex;
}
@media screen and (max-width: 750px) {
  .section09 .report_box .box .img_box.flex {
    top: 0;
    display: block;
  }
}
.section09 .report_box .box .img_box .text {
  margin-top: 1em;
  margin-left: 1em;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .section09 .report_box .box .img_box .text {
    display: block;
    margin-left: 50px;
  }
}
@media screen and (max-width: 450px) {
  .section09 .report_box .box .img_box .text {
    margin-left: 0;
  }
}
.section09 .report_box .voice_box {
  margin: 0 auto;
  max-width: 880px;
  font-family: "Noto Sans JP", sans-serif;
}
.section09 .report_box .voice_box .title_txt {
  margin: 67px 0 36px;
  padding: 0 0 16px;
  color: #4a536b;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.section09 .report_box .voice_box .title_txt::after, .section09 .report_box .voice_box .title_txt::before {
  content: "";
  display: block;
  width: 2px;
  height: 58px;
  background-color: #4a536b;
  position: absolute;
  top: -16px;
}
@media screen and (max-width: 450px) {
  .section09 .report_box .voice_box .title_txt::after, .section09 .report_box .voice_box .title_txt::before {
    top: 0;
  }
}
.section09 .report_box .voice_box .title_txt::before {
  transform: rotate(155deg);
  left: calc(50% - 233px);
}
@media screen and (max-width: 750px) {
  .section09 .report_box .voice_box .title_txt::before {
    left: calc(50% - 205px);
  }
}
@media screen and (max-width: 450px) {
  .section09 .report_box .voice_box .title_txt::before {
    left: calc(50% - 133px);
  }
}
.section09 .report_box .voice_box .title_txt::after {
  transform: rotate(-155deg);
  left: calc(50% + 233px);
}
@media screen and (max-width: 750px) {
  .section09 .report_box .voice_box .title_txt::after {
    left: calc(50% + 205px);
  }
}
@media screen and (max-width: 450px) {
  .section09 .report_box .voice_box .title_txt::after {
    left: calc(50% + 133px);
  }
}
.section09 .report_box .voice_box .flex_box {
  margin: 0 0 33px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .section09 .report_box .voice_box .flex_box {
    display: block;
  }
}
.section09 .report_box .voice_box .flex_box.rev {
  flex-direction: row-reverse;
}
.section09 .report_box .voice_box .img_box {
  width: 100%;
  max-width: 210px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section09 .report_box .voice_box .img_box {
    margin-bottom: 1em;
    max-width: none;
  }
}
.section09 .report_box .voice_box .img_box img {
  margin: 0 auto 10px;
}
.section09 .report_box .voice_box .img_box .name {
  font-size: 14px;
}
.section09 .report_box .voice_box .text_box {
  padding: 20px;
  width: 100%;
  max-width: 670px;
  line-height: 1.75;
  border-radius: 15px;
  box-shadow: 0px 4px 8px 0px rgb(196, 184, 161);
}
@media screen and (max-width: 450px) {
  .section09 .report_box .voice_box .text_box {
    font-size: 14px;
  }
}

/****************************
section10 course
****************************/
.section10 {
  padding: 70px 0 60px;
}
@media screen and (max-width: 750px) {
  .section10 {
    padding: 40px 20px 30px;
  }
}
.section10 .inner {
  margin: 0 auto;
  max-width: 1130px;
}
.section10 h2 {
  margin: 0 0 24px;
  text-align: center;
}
.section10 .sub_txt {
  margin: 0 0 45px;
  color: #4a536b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .section10 .sub_txt {
    font-size: 14px;
  }
}
.section10 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section10 ul li {
  margin: 0 25px 35px;
  padding: 50px 26px 15px;
  width: 326px;
  border: 1px solid #4a536b;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.section10 ul li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #4a536b;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.section10 ul li .title {
  margin: 0 0 16px;
  font-size: 34px;
  font-family: "Nanum Myeongjo", serif;
  font-weight: bold;
}
.section10 ul li .title.vip {
  background: radial-gradient(circle, #90756d 15%, #2a2220 35%);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}
.section10 ul li .title.platinum {
  color: #a7a7a7;
}
.section10 ul li .title.gold {
  color: #90756d;
}
.section10 ul li .sub_title {
  margin: 0 0 20px;
  font-size: 20px;
}
.section10 ul li .lead_txt {
  margin: 0 0 26px;
  font-size: 18px;
}
.section10 ul li span {
  font-weight: bold;
}
.section10 ul li .desc_txt {
  margin: 0 0 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.83;
  text-align: left;
}
.section10 ul li .txt_small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 10px;
  line-height: 1.54;
  text-align: left;
}
.section10 .bottom_text {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1130px;
  text-align: center;
}
.section10 .bottom_text p:nth-child(1) {
  margin: 0 0 45px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 450px) {
  .section10 .bottom_text p:nth-child(1) {
    font-size: 14px;
  }
}
.section10 .bottom_text p:nth-child(2) {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 450px) {
  .section10 .bottom_text p:nth-child(2) {
    font-size: 16px;
  }
}

/****************************
section11 message
****************************/
.section11 {
  padding: 90px 20px 100px;
  background: url(../images/message_bg.png) no-repeat top center;
  background-size: cover;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 750px) {
  .section11 {
    padding: 40px 20px 50px;
  }
}
.section11 .inner {
  margin: 0 auto;
  max-width: 1124px;
}
.section11 h2 {
  margin: 0 0 60px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section11 h2 {
    margin: 0 0 40px;
  }
}
.section11 .flex_box {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .section11 .flex_box {
    display: block;
  }
}
.section11 .img_box {
  margin-right: 65px;
}
@media screen and (max-width: 750px) {
  .section11 .img_box {
    margin-right: 0;
  }
}
.section11 .img_box img {
  margin: 0 auto 20px;
  width: 243px;
}
.section11 .text_box h3 {
  margin: 0 0 1.2em;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.72;
}
@media screen and (max-width: 450px) {
  .section11 .text_box h3 {
    font-size: 3.82vw;
  }
}
.section11 .text_box p {
  margin: 0 0 1.8em;
  font-size: 16px;
  line-height: 1.93;
}
@media screen and (max-width: 450px) {
  .section11 .text_box p {
    font-size: 14px;
  }
}
.section11 .text_box p span {
  font-weight: bold;
}

/****************************
section12 Q&A
****************************/
.section12 {
  padding: 80px 20px 0;
}
.section12 .inner {
  margin: 0 auto;
  max-width: 974px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .section12 .inner {
    display: block;
  }
  .section12 .inner h2 {
    margin: 0 auto 40px;
    text-align: center;
  }
}
.section12 dl {
  margin-left: 110px;
}
@media screen and (max-width: 750px) {
  .section12 dl {
    margin-left: 5px;
  }
}
.section12 dl dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.section12 dl dd {
  margin: 0 0 2em;
  font-size: 16px;
  line-height: 1.75;
}

/****************************
section13 SNS・blog
****************************/
.section13 {
  padding: 90px 0 70px;
}
@media screen and (max-width: 750px) {
  .section13 {
    padding: 40px 0 30px;
  }
}
.section13 .inner {
  padding: 0 20px;
}
.section13 h2 {
  margin: 0 0 70px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section13 h2 {
    margin: 0 0 30px;
  }
}
.section13 .sns_box {
  margin: 60px auto 0;
  width: 620px;
  color: #4a536b;
  display: flex;
}
@media screen and (max-width: 750px) {
  .section13 .sns_box {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.section13 .sns_box .title_txt {
  margin-bottom: 10px;
  margin-left: -11px;
  font-family: "Ms Madi", cursive;
  font-size: 57px;
}
.section13 .sns_box .sub_txt {
  margin: 0 0 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .section13 .sns_box .sub_txt {
    font-size: 3.25vw;
  }
}
.section13 .sns_box .img_box {
  margin-right: 54px;
}
@media screen and (max-width: 750px) {
  .section13 .sns_box .img_box {
    margin-right: 0;
  }
  .section13 .sns_box .img_box img {
    margin: 0 auto;
  }
}
.section13 .sns_box .sns_link_list {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  line-height: 0.875;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .section13 .sns_box .sns_link_list {
    font-size: 20px;
    justify-content: center;
  }
}
.section13 .sns_box .sns_link_list li {
  margin-right: 44px;
}
@media screen and (max-width: 750px) {
  .section13 .sns_box .sns_link_list li {
    margin-right: 10px;
  }
  .section13 .sns_box .sns_link_list li img {
    width: 65.7%;
  }
}
.section13 .sns_box .sns_link_list li:last-child {
  margin-right: 0;
}
.section13 .sns_box .sns_link_list li a {
  color: #4a536b;
  text-decoration: none;
  transition: all 0.3s;
}
.section13 .sns_box .sns_link_list li a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

/****************************
section14
****************************/
.section14 {
  margin-bottom: 14px;
  padding: 50px 20px 10px;
  background: url(../images/section14_bg.webp) repeat-x top center;
  background-size: contain;
}
@media screen and (max-width: 1295px) {
  .section14 {
    background-size: cover;
  }
}
@media screen and (max-width: 450px) {
  .section14 {
    padding: 30px 20px 10px;
  }
}
.section14 .lead_txt {
  margin: 0 0 35px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}
.section14 .fv_button {
  margin: 0 auto;
  width: 469px;
}
@media screen and (max-width: 450px) {
  .section14 .fv_button {
    width: 100%;
  }
}
.section14 .fv_button a {
  padding: 0;
  width: 469px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .section14 .fv_button a {
    width: 100%;
  }
}
.section14 .fv_button a .kakomi {
  width: 444px;
  left: 13px;
  font-size: 14px;
}
@media screen and (max-width: 450px) {
  .section14 .fv_button a .kakomi {
    width: 93%;
  }
}
.section14 .fv_button a span {
  font-size: 28px;
}
.section14 .fv_button.first {
  margin-top: 22px;
}
.section14 .fv_button.first a {
  height: 84px;
  background: url(../images/button_bottom_f.png) no-repeat;
  background-size: cover;
}
.section14 .fv_button.second a {
  height: 55px;
  background: url(../images/button_bottom_s.png) no-repeat;
  background-size: cover;
}

/****************************
footer
****************************/
footer {
  margin: 0;
  padding: 27px 0;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 15px 0;
  }
}
footer .footer_menu ul {
  display: flex;
  justify-content: center;
}
footer .footer_menu ul li {
  margin: 0 0.5em;
}
footer .footer_menu ul li a {
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  footer .footer_menu ul li a {
    font-size: 13px;
  }
}
footer .footer_menu ul li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
footer .copyright {
  margin-top: 40px;
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  footer .copyright {
    margin-top: 15px;
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */