@charset "utf-8";

/* ==========================================================================
   Base
========================================================================== */
html {
  overflow-y: scroll;
}
body {
  position: relative;
  overflow-x: hidden;
  word-wrap: break-word;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
p {
  margin-bottom: 1em;
  line-height: 2;
}
/* ==========================================================================
   Font
========================================================================== */
.f-min {
  font-family: var(--font-min);
  font-weight: var(--font-min-weight);
  font-style: var(--font-min-style);
}
.f-en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-style: var(--font-en-style);
}
/* ==========================================================================
   Clearfix
========================================================================== */
.clearfix {
  display: block;
  clear: both;
}
/* ==========================================================================
   Page Title
========================================================================== */
.pagetitle {
  clear: both;
  position: relative;
  width: 100%;
  margin-top: 50px;
  padding: 3em var(--s-inner-padding);
  background-image: url(../images/contents/pagetitle-bg02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
.pagetitle::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 1;
  width: 200px;
  aspect-ratio: 1/1;
  background: url(../images/contents/pagetitle-obj.png) no-repeat;
  background-size: contain;
  opacity: 0.15;
}
.pagetitle__title {
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 8px #fff,
    0 0 16px #fff,
    0 0 24px #fff,
    0 0 32px #fff;
}
.pagetitle__title span {
  color: var(--color-main);
  line-height: 1.3;
}
.pagetitle__title span.pagetitle__ja {
  display: block;
  font-size: 1.4em;
  font-weight: 600;
}
.pagetitle__title span.pagetitle__en {
  display: block;
  margin-top: 0.6em;
  padding-left: 2px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .pagetitle {
    padding: 5em var(--s-inner-padding) 3.8em 100px;
  }
  .pagetitle::after {
    top: -30px;
    width: 260px;
    opacity: 1;
  }
  .pagetitle__title {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 992px) {
  .pagetitle {
    margin-top: 0;
    padding: 7em var(--s-inner-padding) 5em 150px;
  }
  .pagetitle::after {
    top: -40px;
    left: 0;
    width: 300px;
  }
  .pagetitle__title {
    font-size: 1.8em;
  }
}

/* ==========================================================================
   Typography
========================================================================== */

/* 見出し
----------------------------------------------- */
.post h2 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0.6em 0.8em;
  background-image: -webkit-linear-gradient(90deg, rgb(14, 24, 117) 0%, rgb(42, 75, 174) 100%);
  color: #fff;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1.6;
}
.post h3 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0.6em 0.8em;
  background: var(--color-main-light);
  color: var(--color-main);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.6;
}
.post h4 {
  clear: both;
  margin: 1.5em 0 0.5em;
  padding: 0 0 0 1.6em;
  background: url("../images/common/icon-diamond02.png") no-repeat left 0.2em;
  background-size: 1.3em;
  font-weight: 600;
  font-size: 1.1em;
}
@media screen and (min-width: 768px) {
  .post h2 {
    font-size: 1.6em;
  }
  .post h3 {
    font-size: 1.3em;
  }
  .post h4 {
    font-size: 1.2em;
  }
}
/* title01（英語+日本語）
----------------------------------------------- */
.post h2.title01,
.post h3.title01,
h2.title01,
h3.title01 {
  margin: 0 0 2em;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-main);
  font-weight: normal;
}
.post h2.title01 span.title01__en,
.post h3.title01 span.title01__en,
h2.title01 span.title01__en,
h3.title01 span.title01__en {
  display: block;
  font-size: 3.3em;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
}
.post h2.title01.is-large span.title01__en,
.post h3.title01.is-large span.title01__en,
h2.title01.is-large span.title01__en,
h3.title01.is-large span.title01__en {
  font-size: 5em;
}
.post h2.title01 span.title01__ja,
.post h3.title01 span.title01__ja,
h2.title01 span.title01__ja,
h3.title01 span.title01__ja {
  display: block;
  font-size: 0.85em;
}
@media screen and (min-width: 768px) {
  .post h2.title01 span.title01__en,
  .post h3.title01 span.title01__en,
  h2.title01 span.title01__en,
  h3.title01 span.title01__en {
    font-size: 3.6em;
  }
}
@media screen and (min-width: 992px) {
  .post h2.title01,
  .post h3.title01,
  h2.title01,
  h3.title01 {
    display: flex;
    align-items: baseline;
    gap: 1em;
  }
  .post h2.title01.center,
  .post h3.title01.center,
  h2.title01.center,
  h3.title01.center {
    justify-content: center;
  }
  .post h2.title01 span.title01__en,
  .post h3.title01 span.title01__en,
  h2.title01 span.title01__en,
  h3.title01 span.title01__en {
    font-size: 4em;
  }
}
/* imgtitle
----------------------------------------------- */
.post h2.imgtitle,
.post h3.imgtitle,
.post h4.imgtitle {
  padding: 0;
  border: none;
  background: none;
}

/* catchcopy
----------------------------------------------- */
.catchcopy {
  position: relative;
  padding-bottom: 0.5em;
  color: var(--color-main);
  font-size: 1.5em;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.catchcopy::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 3em;
  height: 3px;
  background-image: -webkit-linear-gradient(5deg, rgb(14, 24, 117) 0%, rgb(7, 100, 182) 82%, rgb(0, 175, 246) 99%);
}
.catchcopy.center {
  text-align: center;
}
.catchcopy .is-small {
  font-size: 85%;
}
.catchcopy.center::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .catchcopy {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 768px) {
  .catchcopy {
    font-size: 2.2em;
  }
}
/* image-style
----------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
img.border {
  border: 1px solid #ddd;
  padding: 0.3em;
}
img.frame {
  outline: 7px solid rgb(255 255 255 / 40%);
  outline-offset: -7px;
}
img.corner {
  border-radius: 10px;
}
img.round {
  border-radius: 50%;
}
img.aligncenter,
img.center {
  display: block;
  margin: auto;
}
@media screen and (max-width: 767px) {
  img.alignright,
  img.alignleft {
    display: block;
    margin: 0 auto 1.5em;
  }
}
@media screen and (min-width: 768px) {
  img.alignright {
    float: right;
    width: min(45%, 400px);
    margin: 0 0 1em 1em;
  }
  img.alignleft {
    float: left;
    width: min(45%, 400px);
    margin: 0 1em 1em 0;
  }
  img.alignright.is-small,
  img.alignleft.is-small {
    width: min(25%, 200px);
  }
}
/* img_switch
----------------------------------------------- */
.switch {
  visibility: hidden;
}
/* figure
----------------------------------------------- */
figure {
  margin: 0 0 2em;
  padding: 0;
  border: none;
}
figure figcaption {
  margin-top: 0.8em;
  font-size: 0.9em;
  text-align: center;
}

/* ==========================================================================
   Box
========================================================================== */
[class^="box0"] {
  clear: both;
  margin: 2em 0;
  padding: 1.5em 1.5em 0.5em;
}
[class^="box0"] .title {
  margin: 0 0 15px;
  padding: 8px 10px;
  background: #666;
  color: #fff;
  font-weight: 600;
  font-size: 1.05em;
  border-radius: 4px 4px 0 0;
}
.box01 {
  border: 3px double #ddd;
  background: #fff;
}
.box02 {
  border: 3px solid #eee;
  background: #fff;
}
.box02.is-main {
  border-color: var(--color-main);
}
.box03 {
  box-shadow: 0px 0px 8px #ddd;
  border: 1px solid #fff;
  background: #fff;
}
.box04 {
  border: 1px solid #ddd;
  box-shadow: 7px 7px 0px #ddd;
  background: #fff;
}
.box05 {
  border: 1px solid #f7f7f7;
  background: #f7f7f7;
}
.box06 {
  border: 1px solid #fff;
  background: url("../images/common/notebg.png");
}
.t-box01 {
  clear: both;
  margin: 30px 0;
}
.t-box01 .title {
  padding: 10px 15px;
  font-weight: 600;
  border-bottom: solid 2px var(--color-main);
}
.t-box01 .t-box01In {
  padding: 15px 15px 5px;
}
[class^="box0"].-round {
  border-radius: 6px;
}
[class^="boxcolor"] {
  border-radius: 6px;
}
[class^="boxcolor"] h4 {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  background: none;
}
.boxcolor-red {
  border: 1px solid var(--color-base-red);
  color: var(--color-base-red);
}
.boxcolor-yellow {
  border: 1px solid var(--color-base-yellow);
  color: var(--color-base-yellow);
}
.boxcolor-blue {
  border: 1px solid var(--color-base-blue);
  color: var(--color-base-blue);
}
.boxcolor-green {
  border: 1px solid var(--color-base-green);
  color: var(--color-base-green);
}
@media screen and (min-width: 768px) {
  [class^="box0"],
  [class^="boxcolor"] {
    clear: both;
    margin: 3em 0;
    padding: 2em 2em 0.5em;
  }
  .t-box01 .title {
    padding: 15px 20px;
  }
  .t-box01 .t-box01In {
    padding: 20px 20px 5px;
  }
}
@media screen and (min-width: 992px) {
  [class^="box0"],
  [class^="boxcolor"] {
    margin: 3.5em 0;
    padding: 2.5em 2.5em 1em;
  }
  [class^="box0"].-round {
    border-radius: 10px;
  }
  .t-box01 {
    margin: 40px 0;
  }
  .t-box01 .title {
    padding: 20px 5px 20px 20px;
    font-size: 1.2em;
    border-bottom: none;
  }
  .t-box01 .t-box01In {
    padding: 3% 3% 1.5%;
  }
}

/* 背景
----------------------------------------------- */
.bg-light {
  background: #fbfffb;
}

/* ==========================================================================
   Link
========================================================================== */
a {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
  cursor: pointer;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
a.over img {
  transition: all 0.3s ease;
}
a.over:hover img {
  opacity: 0.6;
}
a.over.scale:hover img {
  opacity: 1;
  scale: 1.02;
}
[class^="link0"] {
  padding-left: 1.2em;
  background-repeat: no-repeat;
  background-position: left 0.3em;
  background-size: 1em;
}
.link01 {
  background-image: url(../images/common/icon-arrow01.png);
}
.link02 {
  background-image: url(../images/common/icon-arrow02.png);
}
.link03 {
  background-image: url(../images/common/icon-arrow03.png);
}
.link04 {
  background-image: url(../images/common/icon-arrow04.png);
}
[class^="linklist0"] {
  margin-bottom: 1.5em;
}
[class^="linklist0"] li {
  margin-bottom: 0.8em;
}
[class^="linklist0"] li a {
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.linklist01 li a {
  padding-left: 1.1em;
  background: url(../images/common/icon-arrow01.png) no-repeat left 0.3em;
  background-size: 1em;
}
.linklist01 li a:hover {
  transform: translateX(0.2em);
}
.linklist02 li a {
  display: block;
  padding: 0.8em 2.5em 0.8em 1em;
  border-radius: 0.3em;
  border: solid 1px #ddd;
  background: url(../images/common/icon-arrow02.png) no-repeat right 0.5em center;
  background-size: 1em;
}
.linklist02 li a:hover {
  background-color: var(--color-main-light);
}
@media screen and (min-width: 768px) {
  .list02 li {
    padding-left: 12px;
  }
  .linklist02 li a {
    padding: 0.8em 2.5em 0.8em 1em;
    font-size: 1.2em;
  }
}
/* ==========================================================================
   List
========================================================================== */
.list01,
.list02,
.list03,
.list04,
.checklist01,
.checklist02,
.checklist03,
.link-list {
  margin: 2em 0;
}
.list01 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(../images/common/icon-circle02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.list02 li {
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  background: url(../images/common/icon-circle01.png) no-repeat left 0.6em;
  background-size: 0.4em;
}
.list03 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(../images/common/icon-diamond02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.list04 li {
  margin-bottom: 0.8em;
  padding-left: 1.2em;
  background: url(../images/common/icon-original2.png) no-repeat left 0.35em;
  background-size: 0.8em;
}
.checklist01 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(../images/common/icon-check01.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist02 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(../images/common/icon-check02.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist03 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(../images/common/icon-check03.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist01.style01 {
  border-top: 1px solid #eee;
}
.checklist01.style01 li,
.checklist02.style01 li {
  margin: 0;
  padding: 0.8em 0.2em 0.8em 1.4em;
  border-bottom: 1px solid #eee;
  background-position: left 1.1em;
}
.checklist01.style02 li,
.checklist02.style02 li {
  margin: 0;
  padding: 0.8em 0.5em 0.8em 1.8em;
  background-position: 0.3em 1.1em;
}
.checklist01.style02 li:nth-child(even),
.checklist02.style02 li:nth-child(even) {
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .list02 li {
    padding-left: 12px;
  }
}

/* dl
----------------------------------------------- */
.dl01 {
  margin-bottom: 2em;
}
.dl01 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.8em;
  border-bottom: 2px solid var(--color-main);
  color: var(--color-main);
  font-size: 1.2em;
  font-weight: 500;
}
.dl01 dd {
  margin: 0 0 1.5em;
}
.dl02 {
  margin-bottom: 2em;
}
.dl02 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.3em;
  border-bottom: 1px solid var(--color-border);
  background: url(../images/common/icon-square01.png) no-repeat 0 0.35em;
  background-size: 1em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl02 dd {
  margin: 0 0 25px;
}
.dl03 {
  margin-bottom: 2em;
}
.dl03 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.6em;
  border-bottom: 1px solid var(--color-border);
  background: url(../images/common/icon-original.png) no-repeat 0 0.1em;
  background-size: 1.3em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl03 dd {
  margin: 0 0 25px;
}
.dl04 {
  margin-bottom: 2em;
}
.dl04 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.4em;
  border-bottom: 1px solid var(--color-border);
  background: url(../images/common/icon-diamond02.png) no-repeat 0 0.2em;
  background-size: 1.2em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl04 dd {
  margin: 0 0 25px;
}
.faq {
  margin-bottom: 40px;
}
.faq dt {
  margin: 2em 0 1em;
  padding: 0 0 0.8em 1.8em;
  background: url(../images/common/icon-faq-q.png) no-repeat 0 0.1em;
  background-size: 1.5em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.faq dd {
  margin: 0 0 1.6em;
  padding: 0 0 0.6em 1.8em;
  background: url(../images/common/icon-faq-a.png) no-repeat 0 0.15em;
  background-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .dl01 dt {
    margin-top: 2em;
    font-size: 1.2em;
  }
  .dl01 dd {
    margin-bottom: 2em;
  }
  .dl02 dt,
  .dl03 dt,
  .dl04 dt {
    font-size: 1.5em;
  }
  .faq dt {
    font-size: 1.25em;
  }
  .faq dd {
    background-position: left 0.2em;
  }
}

/* タイムライン
----------------------------------------------- */
.dl_timeline {
  position: relative;
  margin: 2em 0;
}
.dl_timeline::before {
  content: "";
  position: absolute;
  left: 63px;
  top: 13px;
  bottom: 0;
  z-index: 2;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--color-main);
}
.dl_timeline dt {
  position: relative;
  float: left;
  clear: both;
  width: 50px;
  margin: 0;
  padding: 0.5em 0;
  color: var(--color-main);
  font-weight: 600;
  font-size: 0.7em;
  text-align: right;
}
.dl_timeline dt::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-main);
  border-radius: 50%;
}
.dl_timeline dd {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 80px;
  padding: 0.1em 0 1em;
  line-height: 1.6;
  min-height: 2.5em;
}
@media screen and (min-width: 768px) {
  .dl_timeline::before {
    left: 93px;
    top: 22px;
    height: calc(100% - 55px);
  }
  .dl_timeline dt {
    width: 70px;
    font-size: 1.1em;
  }
  .dl_timeline dt::before {
    right: -30px;
  }
  .dl_timeline dd {
    margin-left: 120px;
    padding-top: 0.3em;
    font-size: 1.2em;
  }
}

/* ==========================================================================
   Table
========================================================================== */
[class^="table"] {
  width: 100%;
  margin: 0 0 2em;
  border-collapse: collapse;
}
[class^="table"] th,
[class^="table"] td {
  font-weight: normal;
  text-align: left;
  padding: 1em 1.2em;
}
[class^="table"].center th,
[class^="table"].center td {
  text-align: center;
  vertical-align: middle;
}
[class^="table"].w30 th {
  width: 30%;
}
[class^="table"].w30 td {
  width: 70%;
}
[class^="table"].w50 th,
[class^="table"].w50 td {
  width: 50%;
}
[class^="table"].w60 th {
  width: 60%;
}
[class^="table"].w60 td {
  width: 40%;
}
table.table01 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table01 th,
table.table01 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table01 th {
  background: #f6f6f6;
}
table.table02 {
  border-collapse: separate;
  border-spacing: 3px;
}
table.table02 th {
  background: #f6f6f6;
}
table.table03 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table03 th,
table.table03 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table03 th {
  background: #f6f6f6;
}
@media screen and (max-width: 991px) {
  table.table01 th,
  table.table01 td,
  table.table02 th,
  table.table02 td {
    display: block;
    width: 100% !important;
  }
}

/* ==========================================================================
   Text Style
========================================================================== */
.txt-right {
  text-align: right !important;
}
.txt-left {
  text-align: left !important;
}
.floatright {
  float: right;
}
.center {
  text-align: center !important;
}
.inlineb {
  display: inline-block;
}
.font14 {
  font-size: 14px !important;
}
.font12 {
  font-size: 12px !important;
}
.font10 {
  font-size: 10px !important;
}
.lh16 {
  line-height: 1.6 !important;
}
.lh18 {
  line-height: 1.8 !important;
}
@media screen and (min-width: 768px) {
  .pc-center {
    text-align: center;
  }
}

/* Emphasis
----------------------------------------------- */
.em1,
.em1 a,
.em1b {
  color: var(--color-main);
}
.em2,
.em2 a,
.em2b {
  color: var(--color-sub);
}
.em1b,
.em2b,
.em3 {
  font-weight: 700;
}
.em4 {
  font-size: 110%;
}
.em4l {
  font-size: 120%;
}
.em4xl {
  font-size: 130%;
}
.em5 {
  text-decoration: underline;
}
.em6 {
  padding: 0 3px;
  background: var(--color-marker);
  font-weight: 700;
}
.em7 {
  padding: 0 3px;
  background: linear-gradient(transparent 80%, var(--color-marker) 80%);
  font-weight: 700;
}
.em-red {
  color: var(--color-base-red);
}
.em-yellow {
  color: var(--color-base-yellow);
}
.em-green {
  color: var(--color-base-green);
}
.em-blue {
  color: var(--color-base-blue);
}
.em-purple {
  color: var(--color-base-purple);
}
.em-pink {
  color: var(--color-base-pink);
}
.em-white {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .em4 {
    font-size: 120%;
  }
  .em4l {
    font-size: 130%;
  }
  .em4xl {
    font-size: 170%;
  }
}
@media screen and (min-width: 992px) {
  .em4l {
    font-size: 150%;
  }
  .em4xl {
    font-size: 200%;
  }
}

/* ==========================================================================
   Layout
========================================================================== */
[class^="layout"] {
  margin-bottom: 1.5em;
  overflow: hidden;
}
[class^="layout"] img {
  margin-bottom: 1.5em;
}
.layout3 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.layout3 figure img {
  margin-bottom: 0.6em;
}
@media screen and (max-width: 767px) {
  .layout3 .item {
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  [class^="layout"] {
    display: grid;
    gap: 2em;
    align-items: start;
  }
  .layout2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .layout28 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 8fr);
  }
  .layout82 {
    grid-template-columns: minmax(0, 8fr) minmax(0, 2fr);
  }
  .layout37 {
    grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  }
  .layout73 {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  }
  .layout46 {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  }
  .layout64 {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  }
  .layout-reverse .itemright {
    order: 2;
  }
  .layout-reverse .itemleft {
    order: 1;
  }
  .layout3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .layout3 .item {
    width: calc((100% - 2em) / 3);
  }
}

/* ==========================================================================
   Button
========================================================================== */
.submit-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin: 2em 0.5em;
}
.submit-btn a.txt-btn {
  display: inline-block;
  width: clamp(240px, 95%, 360px);
  padding: 1em 2em;
  border: 1px solid var(--color-btn);
  background: url("../images/common/icon-arrow02.png") no-repeat right 0.5em center;
  background-size: 1em;
  color: var(--color-btn);
  font-size: 1em;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  transition: all 0.3s ease;
}
.submit-btn a.txt-btn:hover {
  background-color: var(--color-btn);
  background-image: url("../images/common/icon-arrow02-white.png");
  color: #fff;
}
.submit-btn.is-small a.txt-btn {
  width: 200px;
  max-width: none;
  padding: 0.8em 2em 0.9em;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .submit-btn {
    margin: 3em 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .submit-btn {
    margin: 3.5em 0;
  }
}

/* ==========================================================================
   HR
========================================================================== */
hr {
  clear: both;
  width: 80%;
  height: 1px;
  margin: 3em auto;
  border: none;
  background: var(--color-border);
}
hr.hr01 {
  border-top: dotted 1px #ddd;
  background: none;
}
hr.hr02 {
  width: 100%;
  max-width: 500px;
  height: 40px;
  background: url(../images/common/break.png) no-repeat center center;
  background-size: contain;
}

/* ==========================================================================
   Media
========================================================================== */

/* YouTube・地図
----------------------------------------------- */
.youtube-wrap,
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 15px;
  text-align: center;
}
.youtube-wrap iframe,
.map-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.calendar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5em;
}

/* mp4
----------------------------------------------- */
.mp4-wrap {
  display: flex;
  justify-content: center;
}
.mp4-wrap__video {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
}
/* ==========================================================================
   Photolist
========================================================================== */
.photolist {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1em;
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}
.photolist li figure img {
  width: 100%;
  height: auto;
  display: block;
}
.photolist li figure figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  text-align: center;
}
/* SP カラム数
----------------------------------------------- */
.photolist-sp--col2 {
  grid-template-columns: repeat(2, 1fr);
}
/* PC カラム数（768px〜）
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .photolist-pc--col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
  .photolist-pc--col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}
/* ==========================================================================
   flowbox
========================================================================== */
.flowbox {
  clear: both;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 15px;
  background: url(../images/common/u-arrow01.png) no-repeat 50% bottom;
}
.flowbox.last {
  background: none;
}
.flowbox .itemleft {
  text-align: center;
}

/* flowbox01（左:画像 右:テキスト）
----------------------------------------------- */
.flowbox01 {
  padding-bottom: 3em;
  background: url(../images/common/flow-arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox01 h3 {
  margin-top: 0;
  padding: 0;
  border: none;
  color: var(--color-main);
}
.flowbox01 h3 .flowbox__step {
  display: inline-block;
  margin-bottom: 0.6em;
  padding: 6px 12px 4px;
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  font-size: 0.8em;
  font-family: Helvetica Neue;
}
.flowbox01.last {
  background: none;
  padding-bottom: 0;
}
.flowbox01 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox01 .itemright {
  margin-bottom: 1.5em;
}

/* flowbox02（左:テキスト 右:画像）
----------------------------------------------- */
.flowbox02 {
  padding-bottom: 2em;
  background: url(../images/common/u-arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox02.last {
  background: none;
}
.flowbox02 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox02 .itemright {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .flowbox01 {
    display: flex;
    gap: 2em;
    padding-bottom: 4em;
    background-position: left 12% bottom 1.1em;
  }
  .flowbox01 .itemleft {
    margin-bottom: 0;
    width: 40%;
  }
  .flowbox01.w20 .itemleft img {
    width: 100%;
  }
  .flowbox01 .itemright {
    margin-bottom: 0;
    width: calc(60% - 2em);
  }
}

/* flow
----------------------------------------------- */
.flow__box {
  margin: 2.5em 0 2.5em 15px;
}
.flow__list {
  position: relative;
}
.flow__list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 120px;
  z-index: 0;
  display: block;
  width: 1px;
  height: 99.5%;
  margin-left: -130px;
  background: #eee;
}
.flow__list > li {
  position: relative;
}
.flow__list > li:not(:last-child) {
  margin-bottom: 3.5em;
}
.flow__list .icon {
  position: absolute;
  top: -15.5px;
  left: -28px;
  z-index: 1;
  width: 25px;
  padding: 15px 0;
  background-color: #fff;
}
.flow__list dl {
  position: relative;
  padding-left: 6px;
}
.flow__list dl dt {
  position: relative;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  font-weight: 500;
}
.flow__list dl dd img.alignright {
  margin-bottom: 0.6em;
}
.flow__list dl dd p {
  margin-bottom: 2em;
}
.flow__list dl dd::after {
  display: block;
  content: "";
  clear: both;
}
@media screen and (min-width: 768px) {
  .flow__box {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .flow__list > li:not(:last-child) {
    margin-bottom: 4em;
  }
  .flow__list .icon {
    top: -22px;
    left: -45px;
    width: 40px;
  }
  .flow__list dl {
    padding-left: 15px;
  }
  .flow__list dl dd img.alignright {
    width: 200px;
  }
}

/* ==========================================================================
   Post
========================================================================== */

/* 投稿スタイル01
----------------------------------------------- */
.postList01 .postList__item {
  border-bottom: solid 1px #ddd;
}
.postList01 .postList__item:first-of-type {
  border-top: solid 1px #ddd;
}
.postList01 .postList__link {
  display: block;
  padding: 12px 20px 12px 8px;
  background: url("../images/common/icon-arrow01.png") no-repeat right 15px center;
  background-size: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList01 .postList__link:hover {
  background-color: #f6f6f6;
}
.postList01 .postList__date {
  display: block;
  opacity: 0.4;
  font-size: 12px;
}
.postList01 .postList__title {
  margin: 0;
}
.postList01 .postList__empty {
  text-align: center;
}

/* 投稿スタイル02
----------------------------------------------- */
.postList02 .postList__item {
  margin-bottom: 15px;
  overflow: hidden;
}
.postList02 .postList__itemLink {
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList02 .postList__itemLink:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.postList02 .postList__itemImg {
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  overflow: hidden;
}
.postList02 .postList__itemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.postList02 .postList__itemLink:hover .postList__itemImg img {
  transform: scale(1.1);
}
.postList02 .postList__itemDate {
  display: block;
  margin-bottom: 5px;
}
.postList02 .postList__itemTitle {
  display: -webkit-box;
  display: -moz-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  height: calc(1.5em * 2);
  margin: 0;
}
.postList02 .postList__empty {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .postList02 .postList__itemLink {
    display: flex;
  }
  .postList02 .postList__itemImg {
    width: 30%;
    margin-bottom: 0;
  }
  .postList02 .postList__itemText {
    width: 70%;
    padding-left: 15px;
  }
}

/* シングルページ
----------------------------------------------- */
h1.singlePost__title {
  margin: 0.2em 0 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #282828;
  font-weight: 400;
  font-size: 1.3em;
}
.singlePost__eyecatch {
  text-align: center;
}
.singlePost__eyecatch img {
  width: 800px;
  margin: 0 auto;
}
.singlePost_works h1 {
  margin: 0 0 1.5em;
  font-weight: 500;
  font-size: 1.3em;
}
.singlePost_works dl dt {
  position: relative;
  display: inline-block;
  margin: 0.8em 0;
  padding: 0 40px;
  font-weight: 400;
  font-size: 1.15em;
}
.singlePost_works dl dt::before,
.singlePost_works dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.singlePost_works dl dt::before {
  left: 0;
}
.singlePost_works dl dt::after {
  right: 0;
}
@media screen and (min-width: 768px) {
  h1.singlePost__title {
    font-size: 1.5em;
  }
  .singlePost_works h1 {
    font-size: 1.5em;
  }
  .singlePost_works dl dt {
    font-size: 1.2em;
    padding: 0 50px;
  }
  .singlePost_works dl dt::before,
  .singlePost_works dl dt::after {
    width: 40px;
  }
}

/* contactBox
----------------------------------------------- */
.contactBox {
  margin: 3em auto;
}
.contactBox p {
  margin-bottom: 0;
}
.contactBox .submit-btn {
  margin: 1em auto 0 !important;
}
@media screen and (min-width: 992px) {
  .contactBox {
    margin: 5em auto;
  }
  .contactBox .submit-btn {
    margin-top: 1.5em !important;
  }
}

/* LINEバナー
----------------------------------------------- */
.lineBnr {
  margin-top: 3em;
  text-align: center;
}
.lineBnr a {
  display: inline-block;
}
.lineBnr a img {
  width: 100%;
}

/* testimonial
----------------------------------------------- */
.testimonial {
  margin: 0 0 20px;
  padding: 15px 15px 5px;
  border: 3px solid #e6e6e6;
  border-radius: 3px;
  background: url(../images/common/testimonial-bg.png) no-repeat 98% 10px #fff;
  background-size: 120px;
}
.testimonial .title {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border: none;
  border-bottom: 2px dotted #ccc;
  background: none;
  font-weight: bold;
}
.testimonial .ph {
  display: block;
  float: none;
  max-width: 280px;
  margin: 0 auto 20px;
  text-align: center;
}
.testimonial .name {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .testimonial {
    margin: 0 0 1.5em;
    padding: 25px 25px 5px;
    background-size: 130px;
  }
  .testimonial .title {
    font-size: 1.3em;
  }
  .testimonial .ph {
    display: inline;
    float: right;
    max-width: 250px;
    margin: 0 0 10px 20px;
  }
}
/* ==========================================================================
   Utility
========================================================================== */

/* レスポンシブ表示切替
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .sp_none,
  .sp-none {
    display: none;
  }
  .table01.block th,
  .table01.block td {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc_none,
  .pc-none {
    display: none;
  }
  .searchform div {
    justify-content: space-between;
  }
  .searchform input[type="text"] {
    width: calc(100% - 150px) !important;
    height: 54px;
    padding-left: 10px;
  }
  #searchsubmit {
    width: 120px;
    margin: 0;
  }
}

/* マージン・パディング
----------------------------------------------- */
.MT0 {
  margin-top: 0 !important;
}
.MT10 {
  margin-top: 10px !important;
}
.MT20 {
  margin-top: 20px !important;
}
.MT30 {
  margin-top: 30px !important;
}
.MT40 {
  margin-top: 40px !important;
}
.MT50 {
  margin-top: 50px !important;
}

.MB0 {
  margin-bottom: 0 !important;
}
.MB5 {
  margin-bottom: 5px !important;
}
.MB10 {
  margin-bottom: 10px !important;
}
.MB20 {
  margin-bottom: 20px !important;
}
.MB30 {
  margin-bottom: 30px !important;
}
.MB40 {
  margin-bottom: 40px !important;
}
.MB50 {
  margin-bottom: 50px !important;
}

.MR0 {
  margin-right: 0 !important;
}
.MR10 {
  margin-right: 10px !important;
}
.MR20 {
  margin-right: 20px !important;
}
.MR30 {
  margin-right: 30px !important;
}

.ML0 {
  margin-left: 0 !important;
}
.ML10 {
  margin-left: 10px !important;
}
.ML20 {
  margin-left: 20px !important;
}
.ML30 {
  margin-left: 30px !important;
}
.ML100 {
  margin-left: 100px !important;
}

.MRL-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.PT0 {
  padding-top: 0 !important;
}
.PT5 {
  padding-top: 5px !important;
}
.PT10 {
  padding-top: 10px !important;
}
.PT20 {
  padding-top: 20px !important;
}
.PT30 {
  padding-top: 30px !important;
}

.PB0 {
  padding-bottom: 0 !important;
}
.PB10 {
  padding-bottom: 10px !important;
}
.PB20 {
  padding-bottom: 20px !important;
}
.PB30 {
  padding-bottom: 30px !important;
}
/* recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}
