:root {
  /* font-family */
  --font-sans-jp: "Noto Sans JP", sans-serif;
  --font-serif-jp: "Noto Serif JP", serif;
  --font-sans-en: "Roboto", sans-serif;
  --font-serif-en: "Source Serif 4", serif;
  --font-hand-jp: "Zen Kurenaido", sans-serif;

  /*color*/
  --color-black: #333;
  --color-orange: #d58700;
  --color-gray: #c9c9c9;
  --color-white: #fff;
  --color-of: #f8f6f2;
}

body {
  font-family: var(--font-sans-jp);
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 100px;
  overflow-x: hidden;
  background-color: var(--color-of);
}

@media (max-width: 1280px) {
  body {
    padding-top: 70px;
  }
}

.wrapper {
  margin: 0 auto;
  max-width: 95%;
  position: relative;
  width: 1280px;
}

@media (max-width: 767px) {
  .wrapper {
    max-width: calc(100% - 4rem);
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

/* TEMPLATE
-------------------------------------*/
.tmp_hl_1 {
  text-align: center;
}

.tmp_hl_1 .en {
  font-family: var(--font-sans-en);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  color: var(--color-gray);
  display: block;
  white-space: nowrap;
}

.tmp_hl_1 .jp {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

.tmp_hl_1 .en::first-letter {
  color: var(--color-orange);
}

.tmp_hl_1._left {
  text-align: left;
}

.tmp_hl_1._right {
  text-align: right;
}

.tmp_hl_1.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: start;
  column-gap: 4rem;
}

@media (max-width: 767px) {
  .tmp_hl_1 .en {
    font-size: 7rem;
    width: 100%;
  }

  .tmp_hl_1 .jp {
    font-size: 1.8rem;
    width: 100%;
  }
}

.tmp_hl_2 {
  margin-bottom: 3rem;
}

.tmp_hl_2 .jp {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

.tmp_hl_2 .en {
  display: block;
  font-family: var(--font-sans-en);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.21;
  letter-spacing: .2em;
  color: var(--color-orange);
}

@media (max-width: 767px) {
  .tmp_hl_2 {
    margin-bottom: 2rem;
  }

  .tmp_hl_2 .jp {
    font-size: 2.5rem;
  }

  .tmp_hl_2 .en {
    font-size: 1.4rem;
  }
}

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

.tmp_btn_1 a {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  padding: 2.1rem 4.3rem;
  min-width: 30rem;
  background-color: var(--color-black);
  border-radius: 100px;
  position: relative;
  border: 1px solid #333;
  transition: .3s;
}

.tmp_btn_1 a:after {
  content: "";
  width: .9rem;
  height: .9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto 0;
  transition: .3s;
}

.tags a {
  font-size: 1.5rem;
  padding: .2rem 1rem;
  border: 1px solid #afafaf;
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-black);
}

@media (min-width: 768px) {
  .tmp_btn_1 a:hover {
    background-color: #fff;
    color: var(--color-black);
  }

  .tmp_btn_1 a:hover:after {
    border-color: var(--color-black);
  }

  .tags a {
    transition: opacity .2s;
  }

  .tags a:hover {
    opacity: .6;
  }

  a.cat {
    transition: opacity .2s;
  }

  a.cat:hover {
    opacity: .6;
  }
}

@media (max-width: 767px) {
  .tmp_btn_1 a {
    padding: 1.2rem 3.2rem;
    min-width: 26rem;
    font-size: 1.6rem;
  }

  .tmp_btn_1 a:after {
    width: .7rem;
    height: .7rem;
    right: 2rem;
  }

  .tags a {
    font-size: 1.2rem;
  }
}

/* HEADER
-------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  padding: 0 1.5rem 0 3.5rem;
  z-index: 9999;
}

#header .h_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

#header .h_logo {
  width: clamp(16rem, 22vw, 34.4rem);
  margin-right: auto;
  padding-right: 1rem;
}

#header .h_logo a {
  display: block;
}

#header .h_nav {
  display: flex;
  height: 100%;
  column-gap: clamp(1.5rem, 1.8vw, 5rem);
}

#header .h_nav>li {
  height: 100%;
  position: relative;
}

#header .h_nav>li>a,
#header .h_nav>li>p {
  font-size: clamp(1.6rem, 1vw, 2rem);
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--color-black);
  height: 100%;
  display: flex;
  align-items: center;
}

#header .h_contact,
#header .h_document {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: #fff;
  padding: 1.7rem 1rem;
  width: clamp(15rem,11vw,22rem);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.3rem;
}

#header .h_contact {
  background-color: var(--color-orange);
  margin-left: clamp(2rem, 2vw, 4rem);
  border: 1px solid var(--color-orange);
}

#header .h_document {
  background-color: #009f8a;
  margin-left: 1rem;
  border: 1px solid #009f8a;
}

#header .h_contact:before,
#header .h_document:before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#header .h_contact:before {
  background-image: url(../img/common/mail-white.svg);
}

#header .h_document:before {
  background-image: url(../img/common/document-white.svg);
}

@media (max-width: 1280px) {
  #header {
    height: 70px;
    padding: 0 0 0 1.7rem;
  }

  #header .h_contact {
    width: 70px;
    height: 70px;
    padding: 1rem 0 0;
    margin-left: 3rem;
    border-radius: 0;
    column-gap: 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
  }

  #header .h_contact:before {
    width: 100%;
    height: 29px;
    position: absolute;
    top: 10px;
    left: 0;
  }

  #header .h_contact span {
    line-height: 1;
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  #header .h_document {
    width: 70px;
    height: 70px;
    padding: 1rem 0 0;
    margin-left: 0;
    border-radius: 0;
    column-gap: 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
  }

  #header .h_document:before {
    width: 100%;
    height: 29px;
    position: absolute;
    top: 10px;
    left: 0;
  }

  #header .h_document span {
    line-height: 1;
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {

  #header .h_nav>li>a,
  #header .h_nav>li>p {
    transition: .2s;
  }

  #header .h_nav>li>a:hover,
  #header .h_nav>li>p:hover {
    color: var(--color-orange);
  }

  #header .h_nav>li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% - .1px);
    left: calc(50% - 18rem);
    transition: .3s;
    z-index: +1;
    background-color: var(--color-of);
    width: 36rem;
    padding: 2rem 2.4rem;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .16));
  }

  #header .h_nav>li ul:after {
    content: "";
    border-color: transparent transparent #f8f6f2 transparent;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 1.5rem 1.2rem 1.5rem;
    position: absolute;
    bottom: calc(100% - 1px);
    left: calc(50% - 1.5rem);
  }

  #header .h_nav>li:hover ul {
    opacity: 1;
    visibility: visible;
  }

  #header .h_nav>li li a {
    width: 100%;
    color: var(--color-black);
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.8rem 0;
    border-bottom: 1px dashed #333;
    transition: color .3s;
  }

  #header .h_nav>li li a:hover {
    color: var(--color-orange);
  }

  #header .h_nav>li li a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: .5rem;
    margin: auto 0;
    width: .6rem;
    height: .6rem;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
  }

  #header .h_nav>li li.yel a {
    padding-left: .5em;
  }

  #header .h_contact,
  #header .h_contact:before,
  #header .h_contact:after,
  #header .h_document,
  #header .h_document:before,
  #header .h_document:after {
    transition: .2s;
  }

  #header .h_contact:hover {
    background-color: #fff;
    color: var(--color-orange);
  }

  #header .h_contact:hover:before {
    background-image: url(../img/common/mail-orange.svg);
  }

  #header .h_document:hover {
    background-color: #fff;
    color: #009f8a;
  }

  #header .h_document:hover:before {
    background-image: url(../img/common/document-green.svg);
  }
}

@media (max-width: 767px) {
  #header .h_contact {
    margin: 0;
  }

  #header .h_btn {
    width: 70px;
    height: 70px;
    background-color: var(--color-black);
    position: relative;
    cursor: pointer;
  }

  #header .h_btn:after {
    content: "\30E1\30CB\30E5\30FC";
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  #header .h_btn span {
    display: inline-block;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    left: 18px;
    right: 18px;
    height: 5px;
    transition: .3s;
  }

  #header .h_btn span:nth-of-type(1) {
    top: 10px;
  }

  #header .h_btn span:nth-of-type(2) {
    top: 22px;
  }

  #header .h_btn span:nth-of-type(3) {
    top: 34px;
    right: 30px;
  }

  #header .h_btn.active:after {
    content: "\9589\3058\308B";
  }

  #header .h_btn.active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 22px;
  }

  #header .h_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  #header .h_btn.active span:nth-of-type(3) {
    transform: rotate(135deg);
    right: 18px;
    top: 22px;
  }

  #header+.h_bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9998;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    background-color: #000;
  }

  #header+.h_bg.active {
    opacity: .25;
    visibility: visible;
  }

  #header .h_nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: block;
    transition: .3s;
    height: auto;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background-color: var(--color-of);
  }

  #header .h_nav.active {
    visibility: visible;
    opacity: 1;
  }

  #header .h_nav>li {
    position: relative;
  }

  #header .h_nav>li:not(:last-child) {
    border-bottom: 1px dashed #707070;
  }

  #header .h_nav>li>a,
  #header .h_nav>li>p {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .05em;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
  }

  #header .h_nav .h_nav_child {
    position: absolute;
    top: 0;
    right: 13px;
    width: 5rem;
    height: 6.4rem;
  }

  #header .h_nav .h_nav_child:before,
  #header .h_nav .h_nav_child:after {
    content: "";
    position: absolute;
    top: 2rem;
    right: 0;
    left: 0;
    width: 30px;
    height: 5px;
    background-color: var(--color-orange);
    border-radius: 10px;
    margin: 0 auto;
    transition: .2s;
  }

  #header .h_nav .h_nav_child:after {
    transform: rotate(90deg);
  }

  #header .h_nav .h_nav_child span:after {
    content: "\958B\304F";
    display: block;
    position: absolute;
    top: 4.2rem;
    left: 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    height: 1em;
    width: 100%;
    letter-spacing: .05em;
    text-align: center;
    color: var(--color-orange);
  }

  #header .h_nav .h_nav_child.active:before {
    transform: rotate(45deg);
  }

  #header .h_nav .h_nav_child.active:after {
    transform: rotate(135deg);
  }

  #header .h_nav .h_nav_child.active span:after {
    content: "\9589\3058\308B";
  }

  #header .h_nav>li ul {
    overflow: hidden;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s;
  }

  #header .h_nav .h_nav_child.active+ul {
    height: auto;
    visibility: visible;
    opacity: 1;
  }

  #header .h_nav>li li {
    border-top: 1px dashed #707070;
  }

  #header .h_nav>li li a {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .05em;
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    background-color: #ffebc8;
    color: var(--color-black);
  }

  #header .h_nav>li li.yel a {
    background-color: #ffd894;
  }
}

/* FIXED
-------------------------------------*/
@media (max-width: 767px) {
  .fixed_nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9000;
    display: flex;
  }

  .fixed_nav a {
    width: 50%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    font-size: 1.6rem;
    color: #fff;
  }

  .fixed_nav .fixed_nav_talk {
    background-color: var(--color-orange);
  }

  .fixed_nav .fixed_nav_document {
    background-color: #009f8a;
  }

  .fixed_nav a:before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .fixed_nav .fixed_nav_talk:before {
    background-image: url(../img/common/talk-white.svg);
    width: 3.2rem;
    height: 3.2rem;
  }

  .fixed_nav .fixed_nav_document:before {
    background-image: url(../img/common/document-white.svg);
    height: 3.2rem;
    width: 2.5rem;
  }
}

/* FOOTER
-------------------------------------*/
#page-top {
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  background-color: var(--color-orange);
  position: fixed;
  bottom: 7rem;
  right: 4rem;
  border: 1px solid var(--color-orange);
  z-index: 9000;
  transition: background-color .3s, opacity .3s;
  border-radius: 1rem;
}

#page-top:hover {
  background-color: #fff;
}

#page-top:before {
  content: "";
  width: 100%;
  height: 21%;
  position: absolute;
  left: 0;
  top: 1.3rem;
  background-image: url(../img/common/page-top-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: background-image .3s;
}

#page-top:after {
  content: "\30C8\30C3\30D7";
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  top: 4rem;
  transition: color .3s;
  color: #fff;
  transition: color .3s;
}

#page-top:hover:before {
  background-image: url(../img/common/page-top-orange.svg);
}

#page-top:hover:after {
  color: var(--color-orange);
}

#footer .f_access {
  background-color: #fff;
}

#footer .f_access .wrapper {
  display: flex;
  align-items: start;
  column-gap: 8rem;
  padding: 5rem 0 10rem;
}

#footer .f_access .f_logo,
#footer .f_access .f_text {
  width: calc(50% - 4rem);
}

#footer .f_access .f_text .text_1 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 2.6rem;
}

#footer .f_access .f_text .text_1 a {
  pointer-events: none;
  color: inherit;
}

#footer .f_access .f_text .text_2 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 3em;
  line-height: 2;
  background-image: url(../img/common/train-orange.svg);
  background-repeat: no-repeat;
  background-size: 2.1em auto;
  background-position: left center;
}

#footer .f_nav {
  padding: 5rem 0 8rem;
}

#footer .f_nav .wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 1rem;
}

#footer .f_nav .item {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 2rem;
}

#footer .f_nav .f_link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-black);
  padding-left: .75em;
  position: relative;
  transition: color .3s;
}

#footer .f_nav .f_link_child {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding-left: 2rem;
  align-items: start;
}

#footer .f_nav .f_link_child a {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-black);
  padding-left: .75em;
  position: relative;
  transition: color .3s;
}

#footer .f_nav .f_link::before,
#footer .f_nav .f_link_child a::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: .2em;
  height: .2em;
  border-top: 3px solid var(--color-orange);
  border-right: 3px solid var(--color-orange);
  transform: rotate(45deg);
}

#footer .copyright {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  padding: 1.8rem 1rem;
  background-color: var(--color-black);
}

body:not(.home):not(.page) #footer {
  margin-top: 10rem;
}

@media (min-width: 768px) {
  #footer .f_nav .f_link:hover {
    color: var(--color-orange);
  }

  #footer .f_nav .f_link_child a:hover {
    color: var(--color-orange);
  }
}

@media (max-width: 767px) {
  #page-top {
    width: 6rem;
    height: 6rem;
    right: 2rem;
    bottom: 8rem;
  }

  #page-top:after {
    font-size: 1.4rem;
    top: 3rem;
  }

  #footer {
    padding-bottom: 6rem;
  }

  #footer .f_access .wrapper {
    padding: 4rem 0 4.8rem;
    flex-wrap: wrap;
    row-gap: 3.8rem;
  }

  #footer .f_access .f_text .text_1 {
    font-size: 1.6rem;
  }

  #footer .f_access .f_text .text_1 a {
    text-decoration: underline;
    pointer-events: initial;
  }

  #footer .f_access .f_logo,
  #footer .f_access .f_text {
    width: 100%;
  }

  #footer .f_access .f_text .text_2 {
    font-size: 1.6rem;
    padding-left: 4em;
    background-size: 2.5em;
  }

  #footer .f_nav {
    padding: 5rem 0 4rem;
  }

  #footer .f_nav .wrapper {
    flex-wrap: wrap;
  }

  #footer .f_nav .item {
    width: 100%;
    row-gap: 0;
  }

  #footer .f_nav .item:first-child .f_link:first-child {
    margin-top: 0;
  }

  #footer .f_nav .f_link {
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }

  #footer .f_nav .f_link_child {
    margin-top: 1.2rem;
    row-gap: 2rem;
  }

  #footer .f_nav .f_link_child a {
    font-size: 1.4rem;
  }

  #footer .copyright {
    font-size: 1.4rem;
    padding: 2rem .5rem;
  }
}

/* 下層パーツ
-------------------------------------*/
/* MV */
.page_key {
  position: relative;
  padding: 4rem 0;
  color: #fff;
  text-align: center;
  min-height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page_key .wrapper {
  position: initial;
  max-width: calc(100% - 3rem);
}

.page_key.is_noimg {
  min-height: 0 !important;
  padding: 8rem 0 6rem;
  color: var(--color-black);
}

.page_key:not(.is_noimg):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .4;
  background-color: #000;
}

.page_key h1 .main {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.page_key h1 .sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .2em;
  font-family: var(--font-sans-en);
}

.page_key h1 .sub:first-letter {
  text-transform: uppercase;
}

.page_key .page_key_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page_key .copy {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 4rem;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  .page_key {
    min-height: 40rem;
  }

  .page_key.is_noimg {
    padding: 5rem 0;
  }

  .page_key .copy {
    font-size: 1.8rem;
  }
}

/* ぱんくずリスト */
.breadcrumb {
  margin: 3.8rem 0 5rem;
}

.page_key:not(.is_noimg)+.breadcrumb {
  margin: 3rem 0 10rem;
}

.page_key.is_noimg+.breadcrumb {
  margin: 0 0 5rem;
}

.breadcrumb ul {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  column-gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb .home:before {
  content: "";
  display: block;
  height: 1.5em;
  width: 1.33em;
  background-image: url(../img/common/home-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.breadcrumb a {
  padding-right: 2.5rem;
  position: relative;
  text-decoration: underline;
  color: var(--color-black);
}

.breadcrumb a:after {
  content: "";
  position: absolute;
  right: .5rem;
  top: calc(.75em - .4rem);
  width: .8rem;
  height: .8rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .breadcrumb {
    margin: 2rem 0 4rem;
  }

  .breadcrumb ul {
    font-size: 1.4rem;
  }

  .page_key:not(.is_noimg)+.breadcrumb {
    margin: 2rem 0 4rem;
  }
}

/* サイドナビレイアウト（メインカラムはそれぞれのcssで調整） */
.side_layout {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 3rem;
}

.side_layout .layout_main {
  width: calc(100% - 30rem);
}

.side_layout .sidenav {
  width: 27rem;
}

.side_layout .sidenav>div:not(:first-of-type) {
  margin-top: 3rem;
}

.side_layout .sidenav h2 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-orange);
}

.side_layout .sidenav .inner_cat,
.side_layout .sidenav .inner_tag {
  padding: 2.2rem 2rem 2rem;
  background-color: #fff;
}

.side_layout .sidenav .inner_cat ul,
.side_layout .sidenav .inner_tag ul {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.side_layout .sidenav .inner_cat a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-black);
  padding-left: 1em;
  transition: color .2s;
}

.side_layout .sidenav .inner_cat a:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(.75em - .3rem);
  width: .5rem;
  height: .5rem;
  border-top: 3px solid var(--color-orange);
  border-right: 3px solid var(--color-orange);
  transform: rotate(45deg);
}

.side_layout .sidenav .inner_cat a:hover {
  color: var(--color-orange);
}

.side_layout .sidenav .inner_tag a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-black);
  transition: color .2s;
}

.side_layout .sidenav .inner_tag a:before {
  content: "# ";
}

.side_layout .sidenav .inner_tag a:hover {
  color: var(--color-orange);
}

.side_layout .sidenav .inner_new .item {
  display: flex;
  align-items: start;
  column-gap: 1rem;
  color: var(--color-black);
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}

.side_layout .sidenav .inner_new .item .thumb {
  width: 10rem;
  height: 6.7rem;
  overflow: hidden;
}

.side_layout .sidenav .inner_new .item .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .4s;
}

.side_layout .sidenav .inner_new .item .info {
  width: calc(100% - 11rem);
}

.side_layout .sidenav .inner_new .item .date {
  font-size: 1.4rem;
  font-weight: 500;
}

.side_layout .sidenav .inner_new .item .ttl {
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: .2s;
}

.side_layout .sidenav .inner_new .item+.item {
  margin-top: 2rem;
}

.side_layout .sidenav .inner_new .item:hover .ttl {
  color: var(--color-orange);
}

.side_layout .sidenav .inner_new .item:hover .thumb img {
  transform: scale(1.3);
}

.side_layout .sidenav .inner_popular .item {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #ccc;
}

.side_layout .sidenav .inner_popular .item+.item {
  padding-top: 2rem;
}

.side_layout .sidenav .inner_popular .thumb {
  overflow: hidden;
  display: block;
  margin-bottom: 2rem;
}

.side_layout .sidenav .inner_popular .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .4s;
}

.side_layout .sidenav .inner_popular .thumb:hover img {
  transform: scale(1.3);
}

.side_layout .sidenav .inner_popular .middle {
  margin: 2rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  column-gap: 1.4rem;
}

.side_layout .sidenav .inner_popular .date {
  font-size: 1.4rem;
  font-weight: 500;
}

.side_layout .sidenav .inner_popular .cat {
  font-size: 0;
}

.side_layout .sidenav .inner_popular .cat a {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-black);
  padding: .4rem 2rem;
  min-width: 13.8rem;
  border-radius: 100px;
  background-color: #ffebcb;
  transition: opacity .2s;
}

.side_layout .sidenav .inner_popular .cat a:not(:first-child) {
  display: none;
}

.side_layout .sidenav .inner_popular .cat a:hover {
  opacity: .6;
}

.side_layout .sidenav .inner_popular .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-black);
  transition: .2s;
}

.side_layout .sidenav .inner_popular .ttl:hover {
  color: var(--color-orange);
}

@media (max-width: 767px) {
  .side_layout .layout_main {
    width: 100%;
  }

  .side_layout .sidenav {
    width: 100%;
  }
}

/* ページネーション */
#post_pager ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: 6rem;
}

#post_pager a.page-numbers {
  display: block;
  height: 5rem;
  min-width: 5rem;
  padding: 1.1rem .8rem;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-black);
  background-color: #ffedc9;
  border: 1px solid var(--color-orange);
  border-radius: 3px;
  transition: background-color .2s;
}

#post_pager a.page-numbers:hover {
  background-color: #ffd894;
}

#post_pager .page-numbers.current {
  display: block;
  height: 5rem;
  min-width: 5rem;
  padding: 1.1rem .8rem;
  text-align: center;
  font-size: 1.6rem;
  border: 1px solid var(--color-orange);
  border-radius: 3px;
  background-color: var(--color-orange);
  color: #fff;
}

#post_pager a.page-numbers.first,
#post_pager a.page-numbers.last,
#post_pager a.page-numbers.prev,
#post_pager a.page-numbers.next {
  position: relative;
}

#post_pager a.page-numbers.first {
  padding-left: 2.9rem;
}

#post_pager a.page-numbers.last {
  padding-right: 2.9rem;
}

#post_pager a.page-numbers.prev {
  padding-left: 2rem;
}

#post_pager a.page-numbers.next {
  padding-right: 2rem;
}

#post_pager a.page-numbers.first:before,
#post_pager a.page-numbers.first:after,
#post_pager a.page-numbers.last:before,
#post_pager a.page-numbers.last:after,
#post_pager a.page-numbers.prev:before,
#post_pager a.page-numbers.next:before {
  content: "";
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: .7rem;
  height: .7rem;
}

#post_pager a.page-numbers.first:before,
#post_pager a.page-numbers.first:after,
#post_pager a.page-numbers.prev:before {
  border-bottom: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
}

#post_pager a.page-numbers.last:before,
#post_pager a.page-numbers.last:after,
#post_pager a.page-numbers.next:before {
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}

#post_pager a.page-numbers.first:before {
  left: 1.2rem;
}

#post_pager a.page-numbers.first:after {
  left: 1.7rem;
}

#post_pager a.page-numbers.prev:before {
  left: .8rem;
}

#post_pager a.page-numbers.last:before {
  right: 1.2rem;
}

#post_pager a.page-numbers.last:after {
  right: 1.7rem;
}

#post_pager a.page-numbers.next:before {
  right: .8rem;
}


/* 個別ページ */
.post_single {
  padding: clamp(4rem, 5vw, 6.3rem) clamp(1.5rem, 4vw, 5.5rem) clamp(4rem, 5vw, 7rem);
  background-color: #fff;
}

.post_single .post_header {
  margin-bottom: 6rem;
}

.post_single .post_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.6rem;
  margin-bottom: 3rem;
}

.post_single .post_info .date {
  font-size: 1.6rem;
  font-weight: 500;
}

.post_single .post_info .cat {
  font-size: 1.6rem;
  font-weight: 600;
  padding: .5rem 2rem;
  text-align: center;
  color: var(--color-black);
  min-width: 13.8rem;
  background-color: #ffebc8;
  border-radius: 100px;
}

.post_single .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 3rem;
}

.post_single .title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4rem;
}

.post_single .post_inner {
  font-size: 1.6rem;
}

.post_single .post_inner>* {
  margin: 3rem 0 4rem;
}

.post_single .post_inner *:first-child {
  margin-top: 0 !important;
}

.post_single .post_inner *:last-child {
  margin-bottom: 0 !important;
}

.post_single .post_inner img {
  width: auto;
  max-width: 100%;
}

.post_single .post_inner h2,
.single_connection h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 1.3rem 2rem 1.3rem 4rem;
  position: relative;
  background-color: #ffebc8;
  margin: 6rem 0 3rem;
}

.post_single .post_inner h2:before,
.single_connection h2:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2.3rem;
  height: .6rem;
  background-color: var(--color-orange);
  margin: auto 0;
}

.post_single .post_inner h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: 1.7rem;
  border-bottom: 2px solid var(--color-orange);
}

.post_single .post_inner h4 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--color-orange);
}

.post_single .post_inner h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 1em;
  border-left: 3px solid var(--color-orange);
  letter-spacing: .1em;
  margin-bottom: 3rem;
}

.post_single .post_inner h6 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-orange);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.post_single .post_inner p {
  line-height: 2;
}

.post_single .post_inner em {
  font-weight: initial;
  background-color: #fff6a2;
}

.post_single .post_inner ol {
  counter-reset: ol 0;
}

.post_single .post_inner ol li {
  line-height: 2;
  position: relative;
  padding-left: 2.25em;
}

.post_single .post_inner ol li+li {
  margin-top: 1.3rem;
}

.post_single .post_inner ol li:before {
  counter-increment: ol 1;
  content: counter(ol);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--font-sans-en);
  color: #fff;
  text-align: center;
  width: 1.77em;
  line-height: 1.77;
  background-color: var(--color-orange);
  border-radius: 5px;
}

.post_single .post_inner ul:not(.is-style-checklist) li,
body ul.is-style-normallist li {
  line-height: 2;
  position: relative;
  padding-left: 1.375em;
}

.post_single .post_inner ul:not(.is-style-checklist) li+li,
body ul.is-style-normallist li+li {
  margin-top: .7rem;
}

.post_single .post_inner ul:not(.is-style-checklist) li:before,
body ul.is-style-normallist li:before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  left: 0;
  top: calc(1em - .6rem);
  background-color: var(--color-orange);
}

.post_single .post_inner ul.is-style-checklist li {
  line-height: 2;
  padding-left: 1.875em;
  background-image: url(../img/common/check.svg);
  background-repeat: no-repeat;
  background-size: 1.125em;
  background-position: left center;
}

.post_single .post_inner ul.is-style-checklist li+li {
  margin-top: .8rem;
}

body ul.is-style-documentlist li {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 2.2em;
}

body ul.is-style-documentlist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2em;
  width: 1.78em;
  background-image: url(../img/common/document-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

body ul.is-style-documentlist li+li {
  margin-top: 1.3rem;
}

.post_single .post_inner table td {
  border: 1px solid #aaa;
}

.post_single .post_inner table tbody td:first-child,
.post_single .post_inner table tbody th:first-child {
  background-color: #ffd68f;
  font-weight: 700;
  text-align: center;
  padding: 2.3rem 2rem;
  min-width: 20rem;
}

.post_single .post_inner table tbody td {
  padding: 2.3rem 3.7rem;
}

body table+.wp-element-caption {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.post_single .post_inner p a,
.post_single .post_inner td a,
.post_single .post_inner ul a,
.post_single .post_inner ol a {
  font-weight: 500;
  color: var(--color-orange);
  text-decoration: underline;
  display: inline-block;
  transition: opacity .2s;
}

.post_single .post_inner p a:hover,
.post_single .post_inner td a:hover,
.post_single .post_inner ul a:hover,
.post_single .post_inner ol a:hover {
  opacity: .6;
  text-decoration: none;
}

.post_single .post_inner p a[target="_blank"],
.post_single .post_inner td a[target="_blank"],
.post_single .post_inner ul a[target="_blank"],
.post_single .post_inner ol a[target="_blank"] {
  padding-right: 1.8em;
  background-image: url(../img/common/tab_text.svg);
  background-repeat: no-repeat;
  background-size: 1.5em;
  background-position: right center;
}

.post_single .post_inner .is-style-group_border {
  padding: 2.2rem 2.5rem 2.5rem;
  border: 1px solid var(--color-orange);
}

.post_single .post_inner .is-style-group_memo {
  padding: 2.2rem 2.5rem 2.5rem;
  background-color: #ffebc8;
}

.post_single .post_inner .wp-block-button,
.page .wp-block-button {
  max-width: 100%;
}

.post_single .post_inner .wp-block-button .wp-block-button__link,
.page .wp-block-button .wp-block-button__link {
  width: 36rem;
  max-width: 100%;
  padding: 1.5rem 3rem;
  background-color: var(--color-orange);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  transition: .2s;
  position: relative;
  border: 2px solid var(--color-orange);
}

.post_single .post_inner .wp-block-button.is-style-btn_2 .wp-block-button__link,
.page .wp-block-button.is-style-btn_2 .wp-block-button__link {
  border-color: var(--color-black);
  background-color: var(--color-black);
}

.post_single .post_inner .wp-block-button.is-style-btn_3 .wp-block-button__link,
.page .wp-block-button.is-style-btn_3 .wp-block-button__link {
  border-radius: 5px;
}

.post_single .post_inner .wp-block-button.is-style-btn_4 .wp-block-button__link,
.page .wp-block-button.is-style-btn_4 .wp-block-button__link {
  border-color: var(--color-black);
  background-color: var(--color-black);
  border-radius: 5px;
}

.post_single .post_inner .wp-block-button .wp-block-button__link:after,
.page .wp-block-button .wp-block-button__link:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: .8rem;
  height: .8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: .2s;
}

.page .wp-block-button .wp-block-button__link[href^="#"]:after {
  transform: rotate(135deg);
}

.post_single .post_inner .wp-block-button .wp-block-button__link[target="_blank"]:after,
.page .wp-block-button .wp-block-button__link[target="_blank"]:after {
  transform: rotate(0deg);
  width: .85em;
  height: .85em;
  border: none;
  background-image: url(../img/common/tab-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.page .pattern_col_05 .wp-block-button .wp-block-button__link[target="_blank"]:after {
  transform: rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: none;
}

body .wp-block-button.is-style-btn_5 .wp-block-button__link {
  background-color: #fff;
  border-color: #fff;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.3rem;
}

body .wp-block-button.is-style-btn_5 .wp-block-button__link:after {
  content: initial !important;
}

body .wp-block-button.is-style-btn_5 .wp-block-button__link:before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.5em;
  background-image: url(../img/common/mail-orange.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: .2s;
}

body .wp-block-button.is-style-btn_6 .wp-block-button__link {
  background-color: #aaa;
  border-color: #aaa;
  pointer-events: none;
}

body .wp-block-button.is-style-btn_6 .wp-block-button__link:before,
body .wp-block-button.is-style-btn_6 .wp-block-button__link:after {
  content: initial !important;
}

.post_single_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}

.post_single_nav .single_back_btn {
  width: 36rem;
  background-color: var(--color-orange);
  padding: 1.6rem 2rem;
  border-radius: 5px;
  border: 2px solid var(--color-orange);
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: .2s;
}

.post_single_nav .single_back_btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.7rem;
  width: .8rem;
  height: .8rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  margin: auto 0;
  transform: rotate(45deg);
  transition: .2s;
}

.post_single_nav .single_nav_btn {
  width: 9rem;
}

.post_single_nav .single_nav_btn a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--color-black);
  position: relative;
  transition: color .2s;
}

.post_single_nav .single_nav_btn.prev a {
  text-align: right;
}

.post_single_nav .single_nav_btn a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: .8rem;
  height: .8rem;
  border-top: 2px solid var(--color-orange);
  border-right: 2px solid var(--color-orange);
}

.post_single_nav .single_nav_btn.prev a:before {
  transform: rotate(225deg);
  left: 0;
}

.post_single_nav .single_nav_btn.next a:before {
  transform: rotate(45deg);
  right: 0;
}

.single_connection {
  padding: 6rem 5.5rem;
  background-color: #fff;
  margin-top: 8rem;
}

.single_connection h2 {
  margin: 0 0 4rem;
}

.single_connection .connection_wrap {
  padding: 0 !important;
}


@media (min-width: 768px) {
  .post_single .post_inner .wp-block-button .wp-block-button__link:hover,
  .page .wp-block-button .wp-block-button__link:hover {
    background-color: #fff;
    color: var(--color-orange);
  }

  .post_single .post_inner .wp-block-button .wp-block-button__link:hover:after,
  .page .wp-block-button .wp-block-button__link:hover:after {
    border-color: var(--color-orange);
  }

  .post_single .post_inner .wp-block-button.is-style-btn_2 .wp-block-button__link:hover,
  .post_single .post_inner .wp-block-button.is-style-btn_4 .wp-block-button__link:hover,
  .page .wp-block-button.is-style-btn_2 .wp-block-button__link:hover,
  .page .wp-block-button.is-style-btn_4 .wp-block-button__link:hover {
    color: var(--color-black);
  }

  .post_single .post_inner .wp-block-button.is-style-btn_2 .wp-block-button__link:hover:after,
  .post_single .post_inner .wp-block-button.is-style-btn_4 .wp-block-button__link:hover:after,
  .page .wp-block-button.is-style-btn_2 .wp-block-button__link:hover:after,
  .page .wp-block-button.is-style-btn_4 .wp-block-button__link:hover:after {
    border-color: var(--color-black);
  }

  .post_single .post_inner .wp-block-button .wp-block-button__link[target="_blank"]:hover:after,
  .page .wp-block-columns:not(.pattern_col_05) .wp-block-button .wp-block-button__link[target="_blank"]:hover:after,
  .page .wp-block-media-text .wp-block-button .wp-block-button__link[target="_blank"]:hover:after {
    background-image: url(../img/common/tab-orange.svg);
  }

  .post_single .post_inner .wp-block-button.is-style-btn_2 .wp-block-button__link[target="_blank"]:hover:after,
  .post_single .post_inner .wp-block-button.is-style-btn_4 .wp-block-button__link[target="_blank"]:hover:after,
  .page .wp-block-columns:not(.pattern_col_05) .wp-block-button.is-style-btn_2 .wp-block-button__link[target="_blank"]:hover:after,
  .page .wp-block-columns:not(.pattern_col_05) .wp-block-button.is-style-btn_4 .wp-block-button__link[target="_blank"]:hover:after {
    background-image: url(../img/common/tab-black.svg);
  }

  body .wp-block-button.is-style-btn_5 .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--color-orange);
  }

  body .wp-block-button.is-style-btn_5 .wp-block-button__link:hover:before {
    background-image: url(../img/common/mail-white.svg);
  }

  .post_single_nav .single_back_btn:hover {
    background-color: #fff;
    color: var(--color-orange);
  }

  .post_single_nav .single_back_btn:hover:before {
    border-color: var(--color-orange);
  }

  .post_single_nav .single_nav_btn a:hover {
    color: var(--color-orange);
  }
}

@media (max-width: 767px) {
  .post_single .post_info {
    margin-bottom: 2rem;
  }

  .post_single .post_info .date {
    font-size: 1.5rem;
  }

  .post_single .post_info .cat {
    font-size: 1.5rem;
  }

  .post_single .title {
    margin-bottom: 3rem;
  }

  .post_single .post_inner {
    font-size: 1.5rem;
  }

  .post_single .post_inner h2,
  .single_connection h2 {
    font-size: 1.8rem;
    padding-left: 3rem;
  }

  .post_single .post_inner h2:before,
  .single_connection h2:before {
    width: 2rem;
  }

  .post_single .post_inner h3 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }

  .post_single .post_inner h4 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }

  .post_single .post_inner h5 {
    font-size: 1.6rem;
  }

  .post_single .post_inner h6 {
    font-size: 1.6rem;
  }

  .post_single .post_inner p {
    font-size: 1.5rem;
  }

  .post_single .post_inner ol li {
    padding-left: 2.4em;
  }

  .post_single .post_inner table tbody td,
  .post_single .post_inner table tbody th {
    min-width: 16rem;
  }

  .post_single .post_inner table tbody td {
    padding: 2rem 1.5rem;
  }

  .post_single .post_inner table tbody td:first-child,
  .post_single .post_inner table tbody th:first-child {
    min-width: 13rem;
    padding: 2rem 1.5rem;
  }

  body table+.wp-element-caption {
    font-size: 1.5rem;
  }

  .post_single .post_inner .is-style-group_border,
  .post_single .post_inner .is-style-group_memo {
    padding: 2.2rem 2rem 2.5rem;
  }

  .post_single .post_inner .wp-block-button .wp-block-button__link,
  .page .wp-block-button .wp-block-button__link {
    font-size: 1.6rem;
  }

  .single_connection {
    padding: 3rem 1.5rem 4rem;
  }

  .post_single_nav .single_nav_btn {
    width: 7rem;
  }

  .post_single_nav .single_nav_btn a {
    font-size: 1.4rem;
  }

  .post_single_nav .single_back_btn {
    font-size: 1.5rem;
    padding: 1.4rem .5rem 1.4rem 1.4rem;
    width: 17rem;
  }

  .post_single_nav .single_back_btn:before {
    left: .8rem;
  }
}

body .wp-block-buttons.is-style-btns_3col {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 3rem;
}

body .wp-block-buttons.is-style-btns_3col:not(:last-child) {
  margin-bottom: 6rem;
}

body .wp-block-buttons.is-style-btns_3col>div {
  width: calc((100% - 5rem) / 3);
}

body .wp-block-buttons.is-style-btns_3col .wp-block-button__link {
  width: 100%;
}

@media (max-width: 767px) {
  body .wp-block-buttons.is-style-btns_3col {
    row-gap: 1rem;
    column-gap: 1rem;
  }

  body .wp-block-buttons.is-style-btns_3col>div {
    width: 100%;
  }
}

body .pattern_box_01 {
  background-color: #fff;
  padding: 0 5rem 6rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_box_01 h3 {
  text-align: center;
  color: var(--color-orange);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
  padding-top: 4rem;
  margin-bottom: 2rem;
  position: relative;
}

body .pattern_box_01 h3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 32rem;
  height: 3px;
  background-color: var(--color-orange);
}

body .pattern_box_01>div>p {
  font-size: 1.8rem;
}

body .pattern_box_01 p {
  line-height: 2;
}

body .pattern_box_01 p.has-text-align-center {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 5.5rem;
}

body .pattern_box_01 .margin_full {
  margin-right: -5rem;
  margin-left: -5rem;
}

body .pattern_box_01>div>h4 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: 1.5rem;
  margin-bottom: 2.2rem;
  border-bottom: 2px dashed var(--color-orange);
}

body .pattern_box_01>div>h4:not(:first-child) {
  margin-top: 5rem;
}

body .pattern_box_01>div h5 {
  font-size: 1.8rem;
  color: var(--color-orange);
  margin-bottom: 1.4rem;
}

body .pattern_box_02 {
  background-color: #fff;
  padding: 3.8rem 5rem;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_box_02:not(:first-child) {
  margin-top: 4rem;
}

body .pattern_box_02+.pattern_box_02 {
  margin-top: 4rem;
}

body .pattern_box_02 h3 {
  font-size: 2.5rem;
  letter-spacing: .1em;
  padding-bottom: .68em;
  border-bottom: 2px solid var(--color-orange);
  margin-bottom: 2rem;
}

body .pattern_box_02 h3:not(:first-child) {
  margin-top: 6rem;
}

body .pattern_box_02 p {
  font-size: 1.6rem;
  line-height: 2;
}

body .pattern_box_02 p em {
  background: linear-gradient(transparent 60%, #fff172 60%);
}

body .pattern_box_01 p:not(:last-child),
body .pattern_box_02 p:not(:last-child) {
  margin-bottom: 2.5rem;
}

body .pattern_box_02 ol {
  counter-reset: ol 0;
}

body .pattern_box_02 ol li {
  line-height: 2;
  position: relative;
  padding-left: 2.5em;
  font-size: 1.8rem;
  font-weight: 500;
}

body .pattern_box_02 ol li+li {
  margin-top: 1.3rem;
}

body .pattern_box_02 ol li span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  max-width: 100%;
  padding-top: 1rem;
}

body .pattern_box_02 ol li:before {
  counter-increment: ol 1;
  content: counter(ol, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--font-sans-en);
  color: #fff;
  text-align: center;
  width: 1.77em;
  line-height: 1.77;
  background-color: var(--color-orange);
  border-radius: 5px;
}

body .pattern_box_02 ul:not(.is-style-checklist):not(.is-style-documentlist):not(.is-style-boxin_list01):not(.is-style-boxin_list02):not(.is-style-boxin_list03):not(.is-style-boxin_list04) li {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.375em;
}

body .pattern_box_02 ul:not(.is-style-checklist):not(.is-style-documentlist):not(.is-style-boxin_list01):not(.is-style-boxin_list02):not(.is-style-boxin_list03):not(.is-style-boxin_list04) li+li {
  margin-top: .7rem;
}

body .pattern_box_02 ul:not(.is-style-checklist):not(.is-style-documentlist):not(.is-style-boxin_list01):not(.is-style-boxin_list02):not(.is-style-boxin_list03):not(.is-style-boxin_list04) li:before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  left: 0;
  top: calc(1em - .6rem);
  background-color: var(--color-orange);
}

body .pattern_box_02 ul:not(:last-child),
body .pattern_box_02 ol:not(:last-child) {
  margin-bottom: 2.8rem;
}

body .pattern_box_02 h4,
body .is-style-mediacol1_1 h4,
body .is-style-mediacol4_6 h4,
body .is-style-mediacol3_7 h4,
body .is-style-mediacol9_11 h4 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: .75em;
  margin-bottom: .75em;
  border-bottom: 2px dashed var(--color-orange);
}

body .pattern_box_02 h4:not(:first-child),
body .is-style-mediacol1_1 h4:not(:first-child),
body .is-style-mediacol4_6 h4:not(:first-child),
body .is-style-mediacol3_7 h4:not(:first-child),
body .is-style-mediacol9_11 h4:not(:first-child) {
  margin-top: 2.6rem;
}

body .pattern_box_02 .wp-block-button__link {
  width: 46rem !important;
}

@media (max-width: 767px) {
  body .pattern_box_02 {
    padding: 3rem 2rem;
  }

  body .pattern_box_02 h3 {
    font-size: 1.8rem;
  }

  body .pattern_box_02 ol li {
    font-size: 1.6rem;
  }

  body .pattern_box_02 ul:not(.is-style-checklist):not(.is-style-documentlist):not(.is-style-boxin_list01):not(.is-style-boxin_list02):not(.is-style-boxin_list03):not(.is-style-boxin_list04) li,
  body ul.is-style-normallist li {
    font-size: 1.6rem;
  }

  body ul.is-style-documentlist li {
    font-size: 1.6rem;
  }

  body .pattern_box_02+.pattern_box_02 {
    margin-top: 3rem;
  }

  body .pattern_box_02 h4,
  body .is-style-mediacol1_1 h4,
  body .is-style-mediacol4_6 h4,
  body .is-style-mediacol3_7 h4,
  body .is-style-mediacol9_11 h4 {
    font-size: 1.8rem;
  }

  body .pattern_box_01 .margin_full {
    margin-right: -2rem;
    margin-left: -2rem;
  }
}

body .pattern_box_03 {
  background-color: #fff;
  padding: 6rem 5rem 8.9rem;
}

body .pattern_box_03 .front_text {
  margin-bottom: 7rem;
}

body .pattern_box_03 h3 {
  font-size: 2.5rem;
  letter-spacing: .1em;
  padding-bottom: .68em;
  border-bottom: 2px solid var(--color-orange);
  margin-bottom: 2rem;
}

body .pattern_box_03 h3:not(:first-child) {
  margin-top: 6rem;
}

body .pattern_box_03 .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 7rem;
  row-gap: 3rem;
}

body .pattern_box_03 .wp-block-columns>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  width: calc(50% - 3.5rem);
}

body .pattern_box_03 .wp-block-columns .wp-block-image:not(:last-child) {
  margin-bottom: 1.5rem;
}

body .pattern_box_03 .wp-block-columns .download_p>a {
  color: var(--color-orange);
  text-decoration: underline;
  font-size: 1.8rem;
  font-weight: 500;
  transition: .2s;
}

body .pattern_box_03 .wp-block-columns .download_p>a:hover {
  opacity: .6;
  text-decoration: none;
}

body .pattern_box_03 .wp-block-columns .download_p:not(:last-child) {
  margin-bottom: 1.8rem;
}

body .pattern_box_03 .wp-block-columns .download_p+p {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  body .pattern_box_03 {
    padding: 4rem 2rem 6rem;
  }

  body .pattern_box_03 h3 {
    font-size: 1.8rem;
  }

  body .pattern_box_03 .front_text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 5rem;
  }
}

body .is-style-normal_table:not(:last-child) {
  margin-bottom: 1rem;
}

body .is-style-normal_table table td {
  border: 1px solid #aaa;
  line-height: 2;
  background-color: #fff;
}

body .is-style-normal_table table tbody td:first-child,
body .is-style-normal_table table tbody th:first-child {
  background-color: #ffd68f;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem 2rem;
  min-width: 23rem;
}

body .is-style-normal_table table tbody td:not(:first-child),
body .is-style-normal_table table tbody th:not(:first-child) {
  width: 75%;
}

body .is-style-normal_table table tbody td {
  padding: 1.5rem 3.7rem;
}

body .is-style-boxin_table01 table {
  border-collapse: separate;
  border-spacing: 1rem 1.5rem;
}

body .is-style-boxin_table01 td {
  border-radius: 10px;
  border: none;
  padding: 1.8rem 2rem;
}

body .is-style-boxin_table01 td:first-child {
  background-color: #ffd68f;
  width: 25rem;
  font-weight: 700;
  text-align: center;
}

body .is-style-boxin_table01 td:not(:first-child) {
  background-color: #f8f6f2;
}

body .is-style-boxin_table02:not(:last-child) {
  margin-bottom: 2.3rem;
}

body .is-style-boxin_table02 thead {
  border: none;
  background-color: #ffd68f;
}

body .is-style-boxin_table02 td,
body .is-style-boxin_table02 th {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  padding: 2rem 1rem;
  border: 1px solid #aaa;
}

body .is-style-boxin_table02 td:first-child,
body .is-style-boxin_table02 th:first-child {
  width: 22rem;
}

body .is-style-boxin_table02 td:not(:first-child) {
  color: #ffa200;
}

body .is-style-boxin_table02 td:empty:before {
  content: "\FF0F";
  color: var(--color-black);
}

body .is-style-boxin_list01 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1rem;
}

body .is-style-boxin_list01 li {
  width: calc((100% - 12rem) / 5);
  background-color: #fff172;
  border-radius: 1000px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  letter-spacing: .1em;
}

body .pattern_box_01:not(:first-child) {
  margin-top: 6rem;
}

body .pattern_box_01+.pattern_box_01 {
  margin-top: 8rem;
}

body .is-style-boxin_list02 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
}

body .is-style-boxin_list02 li {
  width: calc((100% - 6rem) / 4);
  background-color: #fff172;
  border-radius: 1000px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  letter-spacing: .1em;
}

body .is-style-boxin_list03 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.5rem;
  row-gap: 1rem;
}

body .is-style-boxin_list03 li {
  width: calc((100% - 7rem) / 3);
  background-color: #fff172;
  border-radius: 1000px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  letter-spacing: .1em;
}

body .is-style-boxin_list04 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.5rem;
  row-gap: 1rem;
}

body .is-style-boxin_list04 li {
  width: calc((100% - 21.5rem) / 6);
  background-color: #fff172;
  border-radius: 1000px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  body .is-style-normal_table table tbody td,
  body .is-style-normal_table table tbody th {
    min-width: 16rem;
  }

  body .is-style-normal_table table tbody td {
    padding: 2rem 1.5rem;
  }

  body .is-style-normal_table table tbody td:first-child,
  body .is-style-normal_table table tbody th:first-child {
    min-width: 13rem;
    padding: 2rem 1.5rem;
  }

  body .pattern_box_01 {
    padding: 0 2rem 4rem;
  }

  body .pattern_box_01>div>p {
    font-size: 1.6rem;
  }

  body .pattern_box_01>div>ul li {
    font-size: 1.6rem;
  }

  body .pattern_box_01 h3 {
    font-size: 2.2rem;
    padding-top: 3rem;
  }

  body .pattern_box_01 h3:before {
    width: 10rem;
  }

  body .pattern_box_01 .pattern_box_01 {
    margin-bottom: 4rem;
  }

  body .pattern_box_01 h4 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }

  body .is-style-boxin_table01 table {
    border-collapse: collapse;
    border-spacing: initial;
  }

  body .is-style-boxin_table01 tr {
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
  }

  body .is-style-boxin_table01 tr+tr {
    margin-top: 1.5rem;
  }

  body .is-style-boxin_table01 td {
    width: 100% !important;
  }

  body .is-style-boxin_table01 td:first-child {
    padding: 1rem 2rem;
  }

  body .is-style-boxin_table02 td,
  body .is-style-boxin_table02 th {
    font-size: 1.4rem;
    padding: 1.4rem .5rem;
  }

  body .is-style-boxin_table02 td:first-child,
  body .is-style-boxin_table02 th:first-child {
    width: 8rem;
  }

  body .is-style-boxin_list01 {
    column-gap: 2rem;
  }

  body .is-style-boxin_list01 li,
  body .is-style-boxin_list02 li,
  body .is-style-boxin_list03 li {
    width: 100%;
  }

  body .is-style-boxin_list04 {
    column-gap: 1rem;
  }

  body .is-style-boxin_list04 li {
    width: calc(50% - .5rem);
  }
}

body .is-style-mediacol1_1,
body .is-style-mediacol4_6,
body .is-style-mediacol3_7,
body .is-style-mediacol9_11 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  row-gap: 3rem;
  align-items: start;
}

body .is-style-mediacol1_1 .wp-block-media-text__media {
  width: calc(50% - 2rem);
  align-self: initial;
}

body .is-style-mediacol1_1 .wp-block-media-text__content {
  width: calc(50% - 2rem);
  padding: 0;
  align-self: initial;
}

body .is-style-mediacol4_6+.is-style-mediacol4_6 {
  margin-top: 5rem;
}

body .is-style-mediacol4_6 .wp-block-media-text__media {
  width: calc(40% - 2rem);
  align-self: initial;
}

body .is-style-mediacol4_6 .wp-block-media-text__content {
  width: calc(60% - 2rem);
  padding: 0;
  align-self: initial;
}

body .is-style-mediacol3_7 .wp-block-media-text__media {
  width: calc(27% - 2rem);
  align-self: initial;
}

body .is-style-mediacol3_7 .wp-block-media-text__content {
  width: calc(73% - 2rem);
  align-self: initial;
  padding: 0;
}

body .is-style-mediacol9_11 .wp-block-media-text__media {
  width: calc(45% - 2rem);
  align-self: initial;
}

body .is-style-mediacol9_11 .wp-block-media-text__content {
  width: calc(55% - 2rem);
  align-self: initial;
  padding: 0;
}

@media (max-width: 767px) {
  body .is-style-mediacol1_1 .wp-block-media-text__media,
  body .is-style-mediacol4_6 .wp-block-media-text__media,
  body .is-style-mediacol3_7 .wp-block-media-text__media,
  body .is-style-mediacol9_11 .wp-block-media-text__media {
    width: 100%;
  }

  body .is-style-mediacol1_1 .wp-block-media-text__content,
  body .is-style-mediacol4_6 .wp-block-media-text__content,
  body .is-style-mediacol3_7 .wp-block-media-text__content,
  body .is-style-mediacol9_11 .wp-block-media-text__content {
    width: 100%;
  }
}

body .youtube_member {
  background-color: #fffacc;
  border-radius: 10px;
  overflow: hidden;
}

body .youtube_member .inner {
  padding: 5rem 4rem 5.4rem;
}

body .youtube_member h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  padding: 2rem 1rem;
  background-color: var(--color-black);
  text-align: center;
}

body .youtube_member .col_1 {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
  margin-bottom: 5rem;
}

body .youtube_member .col_1 p {
  font-weight: 700;
  line-height: 2;
}

body .youtube_member .col_1 a {
  width: clamp(36rem,34vw,46rem);
  margin-left: auto;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
  color: #fff;
  padding: 1.7rem 3rem;
  position: relative;
  border-radius: 100px;
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  transition: .3s;
}

body .youtube_member .col_1 a:after {
  content: "";
  width: .85em;
  height: .85em;
  border: none;
  background-image: url(../img/common/tab-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 2.1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: .3s;
}

body .youtube_member .col_1 a:hover {
  background-color: #fff;
  color: var(--color-orange);
}

body .youtube_member .col_1 a:hover:after {
  background-image: url(../img/common/tab-orange.svg);
}

body .youtube_member .inner_white {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem 2rem 2rem;
}

body .youtube_member .inner_white .text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.3rem;
}

body .youtube_member .inner_white .text .marker {
  background: linear-gradient(transparent 50%, #fff172 50%);
}

body .youtube_member .inner_white .text .green {
  color: #06c755;
}

body .youtube_member .inner_white .col_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3.6rem;
  align-items: center;
  row-gap: 1rem;
}

body .youtube_member .inner_white .col_2 img {
  width: 36.3rem;
}

body .youtube_member .inner_white .col_2 a {
  width: clamp(36rem,34vw,46rem);
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
  color: #fff;
  padding: 1.7rem 3rem;
  position: relative;
  border-radius: 100px;
  background-color: #06c755;
  border: 1px solid #06c755;
  transition: .3s;
}

body .youtube_member .inner_white .col_2 a:after {
  content: "";
  width: .85em;
  height: .85em;
  border: none;
  background-image: url(../img/common/tab-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 2.1rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: .3s;
}

body .youtube_member .inner_white .col_2 a:hover {
  background-color: #fff;
  color: #06c755;
}

body .youtube_member .inner_white .col_2 a:hover:after {
  background-image: url(../img/common/tab-green.svg);
}

@media (max-width: 767px) {
  body .youtube_member h3 {
    font-size: 1.8rem;
  }

  body .youtube_member .inner {
    padding: 3rem 2rem 4rem;
  }

  body .youtube_member .col_1 {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  body .youtube_member .col_1 a {
    width: 100%;
    font-size: 1.6rem;
  }

  body .youtube_member .inner_white .text {
    font-size: 1.6rem;
  }

  body .youtube_member .inner_white .col_2 a {
    font-size: 1.6rem;
  }
}

body .weekly_table:not(:first-child) {
  margin-top: 5rem;
}

body .weekly_table table {
  width: 100%;
  border: 1px solid #aaa;
  min-width: 110rem;
}

body .weekly_table table td:first-child,
body .weekly_table table th:first-child {
  min-width: 14rem;
  position: sticky;
  left: 0;
}

body .weekly_table table td:not(:first-child),
body .weekly_table table th:not(:first-child) {
  width: 50rem;
}

body .weekly_table table td {
  border: 1px solid #aaa;
  background-color: #fff;
  padding: 2.3rem 1rem;
  line-height: 2em;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

body .weekly_table table th {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-orange);
  padding: 1.5rem 1rem;
  color: #fff;
}

body .weekly_table table th:not(:last-child) {
  border-right: 1px solid #fff;
}

body .weekly_table table .is_water {
  background-color: #cff;
}

body .weekly_table table .is_green {
  background-color: #b5f279;
}

body .weekly_table table .is_yellow {
  background-color: #fff172;
}

body .weekly_table table .is_purple {
  background-color: #cccfff;
}

body .weekly_table table .is_orange {
  background-color: #ffc45e;
}

body .weekly_table table .is_blue {
  background-color: #a9c6ff;
}

@media (max-width: 767px) {
  body .weekly_table table th {
    font-size: 1.8rem;
  }
  
  body .weekly_table table td {
    font-size: 1.5rem;
  }

  body .weekly_table table {
    min-width: 90rem;
  }

  body .weekly_table table td:first-child, body .weekly_table table th:first-child {
    min-width: 8rem;
  }
}

body ol.is-style-normallist {
  counter-reset: ol 0;
  font-size: 1.8rem;
}

body ol.is-style-normallist li {
  line-height: 2;
  position: relative;
  padding-left: 2.25em;
}

body ol.is-style-normallist li+li {
  margin-top: 1.3rem;
}

body ol.is-style-normallist li:before {
  counter-increment: ol 1;
  content: counter(ol);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--font-sans-en);
  color: #fff;
  text-align: center;
  width: 1.77em;
  line-height: 1.77;
  background-color: var(--color-orange);
  border-radius: 5px;
}

body ol.is-style-normallist:not(:last-child) {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  body ol.is-style-normallist {
    font-size: 1.6rem;
  }
}

body .pattern_box_instructor {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  padding: 6rem 5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  row-gap: 3rem;
  align-items: start;
  margin-top: 6rem;
}

body .pattern_box_instructor .wp-block-media-text__media {
  width: calc(27% - 2rem);
  align-self: initial;
}

body .pattern_box_instructor .wp-block-media-text__content {
  width: calc(73% - 2rem);
  align-self: initial;
  padding: 0;
}

body .pattern_box_instructor h3 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 1.4rem;
}

body .pattern_box_instructor ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: .5rem;
  margin-bottom: 1.5rem;
}

body .pattern_box_instructor ul li {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.5;
  background-color: var(--color-orange);
  padding: .3rem 2rem;
  border-radius: 5px;
}

body .pattern_box_instructor p {
  font-size: 1.6rem;
  line-height: 2;
}

body .pattern_box_instructor p+p {
  margin-top: 2em;
}

@media (max-width: 767px) {
  body .pattern_box_instructor {
    margin-top: 4rem;
    padding: 4rem 2rem;
  }

  body .pattern_box_instructor .wp-block-media-text__media {
    width: 100%;
  }

  body .pattern_box_instructor .wp-block-media-text__content {
    width: 100%;
  }

  body .pattern_box_instructor h3 {
    font-size: 2rem;
  }

  body .pattern_box_instructor ul li {
    font-size: 1.6rem;
  }
}

body .pattern_orange_box {
  padding: 3.6rem 4rem;
  border-radius: 10px;
  border: 3px solid var(--color-orange);
  background-color: #fff;
}

body .pattern_orange_box p {
  font-size: 1.8rem;
  line-height: 2;
}

body .pattern_orange_box p+p {
  margin-top: 2em;
}

body .pattern_orange_box:not(:first-child) {
  margin-top: 7.6rem;
}

@media (max-width: 767px) {
  body .pattern_orange_box {
    padding: 3rem 2rem;
  }

  body .pattern_orange_box p {
    font-size: 1.5rem;
  }
}

body .pattern_col_01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 4rem;
}

body .pattern_col_01>div {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_col_01.is_col_2 {
  grid-template-columns: repeat(2, 1fr);
}

body .pattern_col_01.is_col_2>div {
  padding: 2.5rem 3rem 3rem;
}

body .pattern_col_01.is_col_3>div {
  padding: 2.5rem 2.5rem 4rem;
}

body .pattern_col_01.is_col_3.level_2>div {
  padding: 1.5rem 2.5rem 4rem;
}

body .pattern_col_01>div:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 8rem;
  height: 3px;
  background-color: var(--color-orange);
}

body .pattern_col_01 h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: .05em;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}

body .pattern_col_01.level_2 h3 {
  min-height: 3em;
  margin-bottom: 1.5rem;
}

body .pattern_col_01 img {
  border-radius: 10px;
  margin-bottom: 1.4rem;
}

body .pattern_col_01 p {
  line-height: 2;
}

body .pattern_col_01 .wp-block-button__link {
  width: 27.3rem;
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.3rem 3rem;
}

body .pattern_col_01 .wp-block-buttons {
  margin-top: 3rem;
}

body .pattern_col_01 .wp-block-image+.wp-block-buttons {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  body .pattern_col_01 {
    row-gap: 2rem;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  body .pattern_col_01.is_col_2>div {
    padding: 2.5rem 1.5rem 3rem;
  }

  body .pattern_col_01 h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem !important;
    min-height: 0 !important;
  }

  body .pattern_col_01 p {
    font-size: 1.5rem;
  }
}

body .pattern_col_02 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 4rem;
  row-gap: 3rem;
}

body .pattern_col_02>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  background-color: #ffebc8;
  padding: 2.8rem 2rem 2.5rem;
  row-gap: 0;
}

body .pattern_col_02 h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
  letter-spacing: .1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: .5rem;
  text-align: center;
}

body .pattern_col_02 h3 mark {
  font-size: 2.2rem;
  letter-spacing: .1em;
}

body .pattern_col_02 img {
  width: 13.8rem;
  height: 13.8rem;
  object-fit: cover;
  margin: 0 auto 3rem;
  border-radius: 100px;
  border: 2px solid var(--color-black);
}

body .pattern_col_02 p {
  padding: 2.4rem 2.8rem 2.5rem;
  background-color: #fff;
  line-height: 2;
}

body .pattern_col_02 p em {
  background: linear-gradient(transparent 60%, #fff172 60%);
}

body .pattern_col_02 ul {
  padding: 3rem 2rem 2.7rem;
  background-color: #fff;
}

body .pattern_col_02 ul li {
  font-weight: 700;
  padding-left: 2.12em;
  background-image: url(../img/common/check_2.svg);
  background-repeat: no-repeat;
  background-size: 1.6875em auto;
  background-position: left top .2rem;
}

body .pattern_col_02 ul li+li {
  margin-top: 1em;
}

body .pattern_col_02 ul li:before {
  content: initial;
}

@media (max-width: 767px) {
  body .pattern_col_02 {
    grid-template-columns: initial;
  }

  body .pattern_col_02 h3 {
    font-size: 2.4rem;
  }

  body .pattern_col_02 h3 mark {
    font-size: 1.8rem;
  }
}

body .pattern_col_voice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 4rem;
  row-gap: 3rem;
}

body .pattern_col_voice>div {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  background-color: #ffebc8;
  padding: 2.8rem 2rem 2.5rem;
  row-gap: 0;
}

body .pattern_col_voice h3 {
  font-weight: 700;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

body .pattern_col_voice p:nth-of-type(1) {
  background-color: var(--color-orange);
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: .8rem;
  margin-bottom: 1.7rem;
}

body .pattern_col_voice p:nth-of-type(2) {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  padding: 2rem 2rem 2.5rem;
}

@media (max-width: 767px) {
  body .pattern_col_voice {
    grid-template-columns: initial;
  }

  body .pattern_col_voice h3 {
    font-size: 1.8rem;
  }
}

body .pattern_number_block>div {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  counter-reset: numberblock 0;
}

body .pattern_number_block .wp-block-group>div {
  position: relative;
  padding: 4.6rem 3rem 4rem 15rem;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 10px;
}

body .pattern_box_01 .pattern_number_block:not(:first-child) {
  margin-top: 6rem;
}

body .pattern_box_01 .pattern_number_block>div {
  row-gap: 3rem;
}

body .pattern_box_01 .pattern_number_block .wp-block-group>div {
  box-shadow: none;
  border: 1px solid #aaa;
}

body .pattern_number_block .wp-block-group>div:before {
  counter-increment: numberblock 1;
  content: counter(numberblock, decimal-leading-zero);
  width: 9.3rem;
  height: 9.3rem;
  line-height: 9.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.8rem;
  margin: auto 0;
  background-image: url(../img/common/number_block_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: var(--font-sans-en);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

body .pattern_number_block h3,
body .pattern_number_block h4 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: 1.1rem;
  position: relative;
  margin-bottom: 2.2rem;
}

body .pattern_number_block h3:after,
body .pattern_number_block h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 2px;
  background-color: var(--color-orange);
}

body .pattern_number_block p {
  font-size: 1.8rem;
  line-height: 2;
}

body .pattern_number_block ul+p {
  font-size: 1.6rem;
  margin-top: 2rem;
}

body .pattern_number_block.is_arrow>div {
  row-gap: 8rem;
}

body .pattern_number_block.is_arrow .wp-block-group:not(:last-of-type)>div:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3rem 4.5rem 0 4.5rem;
  border-color: var(--color-orange) transparent transparent transparent;
  position: absolute;
  top: calc(100% + 2.5rem);
  left: calc(50% - 4.5rem);
}

@media (max-width: 767px) {
  body .pattern_number_block .wp-block-group>div {
    padding: 13rem 2rem 4rem;
  }

  body .pattern_number_block .wp-block-group>div:before {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 2rem;
    font-size: 3.6rem;
    width: 8.6rem;
    height: 8.6rem;
    line-height: 8.6rem;
  }

  body .pattern_number_block h3,
  body .pattern_number_block h4 {
    font-size: 2rem;
  }

  body .pattern_number_block p {
    font-size: 1.6rem;
  }
}

body .pattern_faq_block>div {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  counter-reset: faq 0;
}

body .pattern_faq_block .wp-block-group>div {
  position: relative;
  padding: 3rem 5rem;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 10px;
}

body .pattern_faq_block:not(.faq_openner) .wp-block-group>div {
  min-height: 23rem;
}

body .pattern_faq_block h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  justify-content: start;
  padding-bottom: 1.7rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--color-orange);
}

body .pattern_faq_block h3:before,
body .pattern_faq_block p:first-of-type:before {
  font-family: var(--font-sans-en);
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.33em;
  min-width: 2.33em;
  width: 2.33em;
  text-align: center;
  color: #fff;
  border-radius: 1000px;
  letter-spacing: initial;
}

body .pattern_faq_block h3:before {
  counter-increment: faq 1;
  content: "Q" counter(faq);
  background-color: var(--color-orange);
}

body .pattern_faq_block p {
  line-height: 2;
  padding-left: 9rem;
  position: relative;
  padding-top: 1.4rem;
}

body .pattern_faq_block p:first-of-type:before {
  content: "A";
  background-color: #d5c000;
  position: absolute;
  top: 0;
  left: 0;
}

body .pattern_faq_block.faq_openner>div {
  row-gap: 3rem;
}

body .pattern_faq_block.faq_openner .wp-block-group>div {
  padding: 1.5rem 5rem;
}

body .pattern_faq_block.faq_openner h3 {
  cursor: pointer;
  margin: 0;
  border: none;
  padding-bottom: 0;
  padding-right: 6rem;
  position: relative;
}

body .pattern_faq_block.faq_openner h3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 6rem;
  height: 6rem;
  background-image: url(../img/common/faq-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: .2s;
}

body .pattern_faq_block.faq_openner h3.is-active:after {
  background-image: url(../img/common/faq-minus.svg);
}

body .pattern_faq_block.faq_openner p {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s;
  padding-top: 0;
  padding-bottom: 0;
}

body .pattern_faq_block.faq_openner h3.is-active+p {
  padding-top: 4.6rem;
  border-top: 2px solid var(--color-orange);
  margin-top: 1.6rem;
}

body .pattern_faq_block.faq_openner h3.is-active~p {
  max-height: initial;
  opacity: 1;
  visibility: visible;
}

body .pattern_faq_block.faq_openner h3.is-active~p:last-of-type {
  padding-bottom: 2.4rem;
}

body .pattern_faq_block.faq_openner p:first-of-type:before {
  top: 3rem;
}

@media (max-width: 767px) {
  body .pattern_faq_block .wp-block-group>div {
    padding: 3rem 1.5rem 4rem;
  }

  body .pattern_faq_block.faq_openner .wp-block-group>div {
    padding: 2rem 1.5rem 2rem;
  }

  body .pattern_faq_block h3:before,
  body .pattern_faq_block p:first-of-type:before {
    font-size: 2.6rem;
    margin: 0 auto;
  }

  body .pattern_faq_block h3 {
    flex-direction: column;
    align-items: start;
    row-gap: 1rem;
    font-size: 1.8rem;
  }

  body .pattern_faq_block p {
    padding: 8rem 0 0;
  }

  body .pattern_faq_block.faq_openner h3 {
    padding-right: 0;
  }

  body .pattern_faq_block.faq_openner h3:after {
    width: 3rem;
    height: 3rem;
    margin: 0;
    top: 3rem;
  }

  body .pattern_faq_block.faq_openner h3.is-active+p {
    padding-top: 8rem;
  }

  body .pattern_faq_block.faq_openner h3.is-active~p:last-of-type {
    padding-bottom: 1rem;
  }

  body .pattern_faq_block.faq_openner p:first-of-type:before {
    top: 1rem;
  }

  body .pattern_faq_block p:first-of-type:before {
    right: 0;
  }
}

body .pattern_col_03 {
  display: flex;
  flex-wrap: wrap !important;
  column-gap: 3rem;
  row-gap: 5rem;
  counter-reset: column5 0;
}

body .pattern_col_03>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  background-color: #ffebc8;
  position: relative;
  width: calc((100% - 12rem) / 5);
  padding: 4.4rem 1.5rem 3rem;
}

body .pattern_col_03>div:before {
  counter-increment: column5 1;
  content: counter(column5, decimal-leading-zero);
  font-family: var(--font-sans-en);
  font-size: 6rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-orange);
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: -.71em;
}

body .pattern_col_03>div:not(:last-of-type):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 21px;
  border-color: transparent transparent transparent #D58700;
  position: absolute;
  left: 100%;
  top: calc(50% - 22px);
}

body .pattern_col_03 img {
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid var(--color-black);
}

body .pattern_col_03 p:first-of-type {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.8;
}

body .pattern_col_03 p:first-of-type:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  body .pattern_col_03 {
    padding-top: 3rem;
    row-gap: 7rem;
  }

  body .pattern_col_03>div {
    padding: 3.8rem 1.5rem 3rem;
  }

  body .pattern_col_03>div:before {
    font-size: 5rem;
  }

  body .pattern_col_03 img {
    width: 10rem;
    height: 10rem;
  }

  body .pattern_col_03 p:first-of-type {
    font-size: 2rem;
  }

  body .pattern_col_03>div:not(:last-of-type):after {
    border-width: 21px 22px 0 22px;
    border-color: var(--color-orange) transparent transparent transparent;
    top: 100%;
    left: calc(50% - 22px);
  }
}

body .pattern_col_04 {
  display: flex;
  flex-wrap: wrap !important;
  gap: 4rem;
}

body .pattern_col_04>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  width: calc(50% - 2rem);
  background-color: #fffacc;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: start;
  column-gap: 3rem;
  row-gap: 2.5rem;
  padding: 4rem 3rem;
}

body .pattern_col_04 ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 1.2rem;
  margin-top: -1.3rem;
}

body .pattern_col_04 li {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  min-width: 15.6rem;
  padding: 1rem;
  background-color: #d5c000;
  border-radius: 1000px;
}

body .pattern_col_04 li:first-child {
  background-color: var(--color-orange);
}

body .pattern_col_04 img {
  width: 13.8rem;
  min-width: 13.8rem;
  height: 13.8rem;
  border-radius: 50%;
  object-fit: cover;
}

body .pattern_col_04 .wp-block-group {
  width: calc(100% - 16.8rem);
}

body .pattern_col_04 h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 1.6rem;
}

body .pattern_col_04 p {
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 767px) {
  body .pattern_col_04>div {
    row-gap: 2rem;
    padding: 2rem 2rem 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  body .pattern_col_04 .wp-block-group {
    width: 100%;
  }

  body .pattern_col_04 h3 {
    font-size: 2rem;
  }

  body .pattern_col_04 ul {
    margin-top: 0;
  }

  body .pattern_col_04 li {
    font-size: 1.5rem;
    min-width: 0;
    padding: .5rem 1.5rem;
  }
}

body .pattern_col_05 {
  display: flex;
  flex-wrap: wrap !important;
  column-gap: 4rem;
  row-gap: 2rem;
}

body .pattern_col_05>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  width: calc((100% - 8rem) / 3);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  overflow: hidden;
  padding: 0 2rem 5rem;
}

body .pattern_col_05 h3 {
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center;
  color: #fff;
  background-color: var(--color-orange);
  padding: 2rem 1rem;
  margin: 0 -2rem 2.8rem;
}

body .pattern_col_05 h4 {
  font-size: 2.5rem;
  letter-spacing: .1em;
  padding-bottom: .7rem;
  margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--color-orange);
}

body .pattern_col_05 p {
  line-height: 2;
  margin-bottom: 1rem;
}

body .pattern_col_05 .wp-block-buttons:not(:last-child) {
  margin-bottom: 3.5rem;
}

body .pattern_col_05 .wp-block-button__link {
  width: 18rem;
  font-size: 1.6rem;
  font-weight: 400;
  padding: .8rem 2rem;
}

@media (max-width: 767px) {
  body .pattern_col_05>div {
    padding: 0 1.5rem 3rem;
  }

  body .pattern_col_05 h3 {
    font-size: 2rem;
    padding: 1rem;
    margin-bottom: 1.8rem;
  }

  body .pattern_col_05 h4 {
    font-size: 1.8rem;
  }
}

body .pattern_col_06 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 4rem;
  row-gap: 4rem;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
}

body .pattern_col_06>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  background-color: #ffebc8;
  padding: 2.8rem 2rem 2.5rem;
  row-gap: 0;
}

body .pattern_col_06 h3,
body .pattern_col_06 h4 {
  font-size: 3rem;
  margin-bottom: 3rem;
  letter-spacing: .1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: .5rem;
  text-align: center;
}

body .pattern_col_06 h3 mark,
body .pattern_col_06 h4 mark {
  font-size: 2.2rem;
  letter-spacing: .1em;
}

body .pattern_col_06 img {
  width: 13.8rem;
  height: 13.8rem;
  object-fit: cover;
  margin: 0 auto 3rem;
  border-radius: 100px;
  border: 2px solid var(--color-black);
}

body .pattern_col_06 p {
  padding: 2.4rem 2.8rem 2.5rem;
  background-color: #fff;
  line-height: 2;
}

body .pattern_col_06 p em {
  background: linear-gradient(transparent 60%, #fff172 60%);
}

body .pattern_col_06 ul {
  padding: 3rem 2rem 2.7rem;
  background-color: #fff;
}

body .pattern_col_06 ul li {
  font-weight: 700;
  padding-left: 2.12em;
  background-image: url(../img/common/check_2.svg);
  background-repeat: no-repeat;
  background-size: 1.6875em auto;
  background-position: left top .2rem;
}

body .pattern_col_06 ul li+li {
  margin-top: 1em;
}

body .pattern_col_06 ul li:before {
  content: initial;
}

@media (max-width: 767px) {
  body .pattern_col_06 {
    grid-template-columns: initial;
  }

  body .pattern_col_06 h3,
  body .pattern_col_06 h4 {
    font-size: 2rem;
  }

  body .pattern_col_06 h3 mark,
  body .pattern_col_06 h4 mark {
    font-size: 1.8rem;
  }
}

body .pattern_sideillust_list {
  padding-left: 35.7rem;
  position: relative;
}

body .pattern_sideillust_list:before {
  content: "";
  width: 30rem;
  height: 54.8rem;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/page/page283_01.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body .pattern_sideillust_list .wp-block-group {
  background-color: #fff;
  padding: 2.4rem 2rem 2.4rem 11.5rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_sideillust_list .wp-block-group+p {
  margin-top: 2rem;
}

body .pattern_unillust_list .wp-block-group {
  padding: 3rem 2rem 3rem 11.5rem;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_unillust_list.mini .wp-block-group {
  width: 60rem;
  max-width: 100%;
  margin: 0 auto;
}

body .pattern_one_list .wp-block-group {
  padding: 4rem 5rem;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .pattern_one_list .wp-block-group p:before {
  content: "\4E00\3001";
  display: inline-block;
  padding-right: 1rem;
  min-width: 2.1em;
  white-space: nowrap;
  color: var(--color-orange);
  letter-spacing: .1em;
}

body .pattern_sideillust_list .wp-block-group+.wp-block-group,
body .pattern_unillust_list .wp-block-group+.wp-block-group,
body .pattern_one_list .wp-block-group+.wp-block-group {
  margin-top: 2rem;
}

body .pattern_sideillust_list .wp-block-group:before,
body .pattern_unillust_list .wp-block-group:before {
  content: "";
  width: 7rem;
  height: 7rem;
  background-image: url(../img/common/check-circle-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.2rem;
  margin: auto 0;
}

body .pattern_sideillust_list h3,
body .pattern_unillust_list h3,
body .pattern_one_list p {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .1em;
}

body .pattern_sideillust_list p,
body .pattern_unillust_list p {
  font-size: 1.8rem;
  margin-top: 1rem;
  line-height: 1.8;
}

body .pattern_one_list .wp-block-group p:before {
  content: "\4E00\3001";
  display: inline-block;
  padding-right: 1rem;
  min-width: 2.1em;
  white-space: nowrap;
  color: var(--color-orange);
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  body .pattern_sideillust_list {
    padding: 0;
  }

  body .pattern_sideillust_list:before {
    display: block;
    position: initial;
    margin: 0 auto 2rem;
    height: 20rem;
    background-position: center;
  }

  body .pattern_sideillust_list .wp-block-group,
  body .pattern_unillust_list .wp-block-group {
    padding: 1.8rem 2rem 1.8rem 7rem;
  }

  body .pattern_one_list .wp-block-group {
    padding: 1.8rem 2rem;
  }

  body .pattern_sideillust_list .wp-block-group:before,
  body .pattern_unillust_list .wp-block-group:before {
    width: 3rem;
    height: 3rem;
    left: 1.5rem;
  }

  body .pattern_sideillust_list h3,
  body .pattern_unillust_list h3,
  body .pattern_one_list p {
    font-size: 1.8rem;
  }

  body .pattern_sideillust_list p,
  body .pattern_unillust_list p {
    font-size: 1.6rem;
  }
}

body .contact_section {
  padding: 10rem 0;
  position: relative;
}

body .contact_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-color: #ffebc8;
}

body .contact_section>.wp-block-group__inner-container {
  border-radius: 10px;
  overflow: hidden;
  padding: 0 5rem 5rem;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

body .contact_section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 2rem;
  color: #fff;
  background-color: var(--color-black) !important;
  margin: 0 -5rem 3rem;
  text-align: center;
}

body .contact_section .wp-block-columns {
  display: flex;
  column-gap: 0;
  margin-top: 3.4rem;
}

body .contact_section .wp-block-columns>div {
  flex-grow: initial !important;
  flex-basis: initial !important;
}

body .contact_section .wp-block-columns>div:first-child {
  padding-right: clamp(2rem, 3vw, 5rem);
  width: 42%;
  border-right: 1px solid #aaa;
}

body .contact_section .wp-block-columns>div:last-child {
  padding-left: clamp(2rem, 3vw, 5rem);
  width: 58%;
  display: flex;
  align-items: center;
}

body .contact_section .text_01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .8rem;
}

body .contact_section .text_02 {
  font-family: var(--font-sans-en);
  font-size: clamp(3.6rem, 4vw, 6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .7rem;
  padding-left: 1em;
  position: relative;
  white-space: nowrap;
}

body .contact_section .text_02:before {
  content: "";
  width: .83em;
  height: 1.2em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/common/tel-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body .contact_section .text_02 a {
  pointer-events: none;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

body .contact_section .text_03 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

body .contact_section .wp-block-buttons {
  align-items: center;
  column-gap: 2rem;
  row-gap: 1rem;
  max-width: 100%;
}

body .contact_section .wp-block-button {
  width: calc(50% - 1rem);
}

body .contact_section .wp-block-button__link {
  padding: 2.3rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}

body .contact_section .btn_01 .wp-block-button__link {
  column-gap: 1.8rem;
}

body .contact_section .btn_02 .wp-block-button__link {
  column-gap: 1rem;
  background-color: #06c755;
  border-color: #06c755;
}

body .contact_section .btn_01 .wp-block-button__link:before,
body .contact_section .btn_02 .wp-block-button__link:before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: .2s;
}

body .contact_section .btn_01 .wp-block-button__link:before {
  background-image: url(../img/common/mail-white.svg);
}

body .contact_section .btn_02 .wp-block-button__link:before {
  background-image: url(../img/common/mobile-white.svg);
}

.post_single .post_inner .contact_section h2 {
  margin: 0 -5rem 3rem;
}

.post_single .post_inner .contact_section h2:before {
  content: initial;
}

.post_single .post_inner .contact_section .wp-block-button {
  width: 100%;
}

.post_single .post_inner .contact_section .wp-block-columns>div:first-child {
  width: 45%;
}

.post_single .post_inner .contact_section .wp-block-columns>div:last-child {
  width: 55%;
}

.post_single .post_inner .contact_section .text_02 {
  font-size: clamp(3.4rem, 2.6vw, 6rem);
}

@media (min-width: 768px) {
  body .contact_section .btn_02 .wp-block-button__link:hover {
    background-color: #fff;
    color: #06c755;
  }

  body .contact_section .btn_02 .wp-block-button__link[target="_blank"]:hover:after {
    background-image: url(../img/common/tab-green.svg) !important;
  }

  body .contact_section .btn_01 .wp-block-button__link:hover:before {
    background-image: url(../img/common/mail-orange.svg);
  }

  body .contact_section .btn_02 .wp-block-button__link:hover:before {
    background-image: url(../img/common/mobile-green.svg);
  }
}

@media (max-width: 767px) {
  body .contact_section {
    padding: 5rem 0;
  }

  body .contact_section h2 {
    font-size: 2rem !important;
    padding: 1.4rem !important;
    margin: 0 -2rem 3rem !important;
  }

  body .contact_section>.wp-block-group__inner-container {
    padding: 0 2rem 4rem;
  }

  body .contact_section .text_02 a {
    pointer-events: initial;
    text-decoration: underline;
    color: var(--color-orange);
  }

  body .contact_section .wp-block-columns>div {
    width: 100% !important;
  }

  body .contact_section .wp-block-columns>div:first-child {
    padding-right: 0;
    padding-bottom: 3rem;
    border-right: none;
    border-bottom: 1px solid #aaa;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body .contact_section .wp-block-columns>div:last-child {
    padding: 0;
  }

  body .contact_section .wp-block-buttons {
    flex-wrap: wrap;
    row-gap: 2rem;
    width: 100%;
  }

  body .contact_section .wp-block-button {
    width: 100%;
  }

  body .contact_section .wp-block-button__link {
    padding: 1.8rem 2.8rem;
    font-size: 1.6rem;
    margin: 0 auto;
  }
}

body .wp-block-video {
  width: 108rem;
  height: 60.8rem;
  max-width: 100%;
  max-height: 60vw;
  margin: 0 auto;
}

body .wp-block-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .wp-block-video:not(:last-child) {
  margin-bottom: 10rem;
}

@media (max-width: 767px) {
  body .wp-block-video:not(:last-child) {
    margin-bottom: 6rem;
  }
}