@charset "UTF-8";
/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
tr,
th,
td,
caption {
  vertical-align: middle;
  text-align: left;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  width: 100%;
}

textarea {
  vertical-align: top;
}

:root {
  --width-tablet: $width_tablet;
  --width-desktop: $width_desktop;
  --width-wide: $width_wide;
  --color-font: #333;
  --color-line: #d9d9d9;
  --color-bg: #f2f2f2;
  --color-link: #004586;
  --font-family-ja: YakuHanJP,"Noto Sans JP", sans-serif;
  --font-family-en: "League Spartan", sans-serif;
  --font-family-num: "Jost", sans-serif;
}

/*----------------------------------------------------------------------------

　body

-----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 1000px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--font-family-ja);
  font-weight: 300;
  color: var(--color-font);
  -webkit-font-smoothing: antialiased;
  /* Mac Safari/Chrome */
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-font);
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1200px;
  padding-inline: 50px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
.container--mid {
  max-width: 1150px;
}

.main {
  padding-top: 103px;
}
@media screen and (min-width: 1000px) {
  .main {
    padding-top: 220px;
  }
}

.home .main {
  padding-top: 0;
}

.top .main {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

/*----------------------------------------------------------------------------
　パンくず
-----------------------------------------------------------------------------*/
.breadcrumb {
  margin: 0 auto;
  padding-block: 25px 52px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  margin: auto;
}
.breadcrumb__item {
  padding: 0 15px 0 0;
  font-size: 10px;
}
@media screen and (min-width: 800px) {
  .breadcrumb__item {
    padding: 0 20px 0 0;
    font-size: 14px;
  }
}
.breadcrumb__item:last-child a {
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 1px solid #9F9F9F;
  border-right: 1px solid #9F9F9F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb__link {
  text-decoration: underline;
}
.breadcrumb__link:hover {
  color: var(--color-link);
  opacity: 1;
}

/*----------------------------------------------------------------------------
　text__link
-----------------------------------------------------------------------------*/
.text__link01 a {
  display: inline-block;
  padding: 2px 0 2px 40px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: underline;
  position: relative;
  z-index: 2;
}
.text__link01 a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: url("../images/arrow01.webp") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}

.text__link01 + .text__link01 {
  margin-top: 20px;
}

.text__link02 a {
  display: inline-block;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 799px) {
  .text__link02 a {
    font-size: 14px;
  }
}
.text__link02 a span {
  text-decoration: underline;
  font-weight: 300;
}
.text__link02 a::before {
  content: "〉";
}

@media screen and (min-width: 1000px) {
  .text__link01 a:hover,
  .text__link02 a:hover {
    color: var(--color-link);
    opacity: 1;
  }
}

/*------------------------------------------------------------------------------------------------
　
  component page

-------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
　page__title
-----------------------------------------------------------------------------*/
.page__title {
  margin: 0;
  padding: 60px 50px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.9;
  border: 1px solid var(--color-font);
  border-radius: 50px;
}
@media screen and (max-width: 799px) {
  .page__title {
    width: 100%;
    padding: 30px 20px 30px 0;
    font-size: 18px;
    line-height: 1.6;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 0;
  }
  .page__title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    border: 1px solid var(--color-font);
    border-left: none;
    border-radius: 0 30px 30px 0;
    z-index: -1;
  }
}

.fs-32 {
  font-size: 32px;
}
@media screen and (max-width: 799px) {
  .fs-32 {
    font-size: 24px;
  }
}

.fs-24 {
  font-size: 24px;
}
@media screen and (max-width: 799px) {
  .fs-24 {
    font-size: 20px;
  }
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-10 {
  font-size: 10px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

/*----------------------------------------------------------------------------
　component__body
-----------------------------------------------------------------------------*/
.component__body h2,
.component__body h3,
.component__body h4,
.component__body h5,
.component__body h6 {
  font-weight: 300;
  line-height: 1.9;
  color: #000;
  letter-spacing: 0.04em;
}

.component__body {
  font-weight: 300;
}
.component__body .pdf {
  padding-right: 50px;
}
.component__body .pdf::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url(../images/icon-pdf.webp) 0 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.component__body p:not([class]) {
  font-weight: 300;
  line-height: 1.9;
}
@media screen and (max-width: 799px) {
  .component__body p:not([class]) {
    font-size: 14px;
  }
}
.component__body p:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 799px) {
  .component__body p:not(:first-child) {
    margin-top: 15px;
  }
}
.component__body .text__link01--mgnon {
  margin: 0 !important;
}
.component__body .text__link01,
.component__body .text__link02 {
  margin: 40px 0 0;
}
@media screen and (max-width: 799px) {
  .component__body .text__link01,
  .component__body .text__link02 {
    margin: 20px 0 0;
  }
}

/*------------------------------
  component__message01
------------------------------*/
.component__message01 {
  margin: 100px 0 100px;
}
.component__message01--mgnon {
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .component__message01--pcpb {
    padding-bottom: 6rem;
  }
}
.component__message01 .message__title {
  font-size: 32px;
}
@media screen and (max-width: 799px) {
  .component__message01 .message__title {
    font-size: 24px;
  }
}
.component__message01 .message__title.type-01 {
  padding: 0 0 20px;
  position: relative;
}
@media screen and (max-width: 799px) {
  .component__message01 .message__title.type-01 {
    border: 1px solid var(--color-font);
    border-top: none;
    border-left: none;
    border-radius: 0 0 60px 0;
    padding: 63px 0 15px;
    border-radius: 0 0 40px 0;
    margin-top: -5rem;
  }
  .component__message01 .message__title.type-01::after {
    border-radius: 30px 0 0 0;
    content: "";
    position: absolute;
    left: 100%;
    bottom: 100%;
    width: 100vw;
    height: 50px;
    border: 1px solid var(--color-font);
    border-bottom: none;
    border-right: none;
    z-index: 2;
  }
}
.component__message01 .message__title.type-02 {
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-font);
}
@media screen and (max-width: 799px) {
  .component__message01 .message__title.type-02 {
    padding: 0 0 15px;
  }
}
.component__message01 .message__title.type-03 span {
  position: relative;
}
@media screen and (max-width: 799px) {
  .component__message01 .message__title.type-03 span::after {
    width: calc(100vw - 20px);
    max-width: none;
    height: 157px;
    top: auto;
    bottom: 0;
    left: -30px;
  }
}
.component__message01 .message__title.type-04 span {
  position: relative;
}
@media screen and (max-width: 799px) {
  .component__message01 .message__title.type-04 span {
    padding-left: 45px;
  }
  .component__message01 .message__title.type-04 span::after {
    width: calc(100vw - 20px);
    height: 140px;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 799px) {
  .component__message01 {
    margin: 50px 0 50px;
  }
}

/*------------------------------
  component__message02
------------------------------*/
.component__message02 {
  margin: 70px 0;
}
.component__message02 .name {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 300;
}
.component__message02 .name .large {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}
.component__message02 .flex__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .component__message02 .flex__box {
    display: block;
  }
}
.component__message02 .flex__boxLeft {
  width: 300px;
}
.component__message02 .flex__boxRight {
  position: relative;
  padding: 60px 60px 0 0;
  z-index: 0;
  margin-top: 38px;
}
@media screen and (max-width: 799px) {
  .component__message02 .flex__boxRight {
    padding: 40px 30px 0 0;
  }
}
.component__message02 .flex__boxRight::before {
  content: "";
  display: block;
  width: calc(100% + 10rem);
  height: calc(100% - 60px);
  position: absolute;
  top: 0;
  right: -1px;
  border-top: 1px solid var(--color-font);
  border-right: 1px solid var(--color-font);
  border-top-right-radius: 60px;
  pointer-events: none;
}
@media screen and (max-width: 799px) {
  .component__message02 .flex__boxRight::before {
    height: 40%;
    border-top-right-radius: 40px;
  }
}
.component__message02 .flex__boxRight::after {
  content: "";
  display: block;
  width: 100vw;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 100%;
  border-bottom: 1px solid var(--color-font);
  border-left: 1px solid var(--color-font);
  border-bottom-left-radius: 60px;
  pointer-events: none;
}
@media screen and (max-width: 799px) {
  .component__message02 .flex__boxRight::after {
    bottom: calc(60% - 60px);
    border-bottom-left-radius: 40px;
  }
}
@media screen and (min-width: 800px) {
  .component__message02 .flex__boxRight {
    padding-bottom: 6rem;
    width: calc(100% - 350px);
  }
}
.component__message02 .message__title {
  font-size: 24px;
  margin-bottom: 3rem;
  font-weight: 400 !important;
}
@media screen and (max-width: 799px) {
  .component__message02 .message__title {
    font-size: 20px;
  }
}

.message__title.type-03 span::after {
  content: "";
  display: block;
  width: calc(50vw - 100% - 35px);
  max-width: 402px;
  height: 111px;
  border-top: 1px solid var(--color-font);
  border-right: 1px solid var(--color-font);
  position: absolute;
  top: 24px;
  left: calc(100% + 45px);
}
.message__title.type-04 span::after {
  content: "";
  display: block;
  width: 460px;
  height: 68px;
  border-top: 1px solid var(--color-font);
  border-left: 1px solid var(--color-font);
  border-top-left-radius: 40px;
  position: absolute;
  bottom: calc(100% + 13px);
  left: -220px;
}

/*------------------------------
  component__system
------------------------------*/
.component__system {
  margin: 100px 0 100px;
  padding: 40px 0 0;
  border-top: 1px solid var(--color-font);
}
@media screen and (max-width: 799px) {
  .component__system {
    margin: 50px 0 50px;
    padding: 30px 0 0;
  }
}
.component__system .system__title {
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  .component__system .system__title {
    font-size: 20px;
  }
}

/*------------------------------
  component__report
------------------------------*/
.component__report {
  margin: 100px 0 100px;
  padding: 40px 0 0;
  border-top: 1px dashed var(--color-line);
}
@media screen and (max-width: 799px) {
  .component__report {
    margin: 50px 0 50px;
    padding: 30px 0 0;
  }
}
.component__report .date {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .component__report .date {
    margin-right: 14px;
  }
}
.component__report .cate {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
}
.component__report .report__title {
  margin: 10px 0 0;
  font-size: 20px;
}

/*------------------------------
  component__program
------------------------------*/
.component__program {
  margin: 100px 0 0;
}
@media screen and (max-width: 799px) {
  .component__program {
    margin: 50px 0 0;
    padding: 30px 0 0;
  }
}
.component__program + .component__program {
  margin-top: 40px;
  padding: 40px 0 0;
  border-top: 1px dashed var(--color-line);
}
@media screen and (max-width: 799px) {
  .component__program + .component__program {
    margin-top: 40px;
  }
}
.component__program .img__box {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .component__program .img__box {
    width: 70%;
  }
}
.component__program .flex__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .component__program .flex__box {
    display: block;
  }
}
.component__program .program__txt {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.component__program .flex__boxLeft {
  width: 30%;
}
@media screen and (max-width: 799px) {
  .component__program .flex__boxLeft {
    width: 100%;
  }
}
.component__program .program__item {
  background: #fff;
  width: 50%;
  padding: 25px 25px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
}
@media screen and (min-width: 1000px) {
  .component__program .program__item {
    transition: 0.2s ease-out;
    cursor: pointer;
  }
  .component__program .program__item:hover {
    background: #F6F6F6;
  }
}
.component__program .program__title {
  font-size: 20px;
  font-weight: 400;
}
.component__program .flex__boxRight {
  width: 65%;
}
@media screen and (max-width: 799px) {
  .component__program .flex__boxRight {
    width: 100%;
  }
}
.component__program .program__block {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
@media screen and (max-width: 799px) {
  .component__program .program__block {
    gap: 0 15px;
    margin: 25px 0 0;
  }
}

/*----------------------------------------------------------------------------
　top-mv
-----------------------------------------------------------------------------*/
.top-mv {
  width: 100%;
  padding: 240px 5rem 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 799px) {
  .top-mv {
    width: 100%;
    padding: 120px 0 0;
  }
}
.top-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), #fff);
  width: 100%;
  height: 1230px;
  z-index: -1;
}
@media screen and (max-width: 799px) {
  .top-mv::before {
    width: 100%;
    height: 0;
    padding-top: 141.7553191489%;
  }
}
.top-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: url("../images/mv-bg.webp") center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 1230px;
  z-index: -2;
}
@media screen and (max-width: 799px) {
  .top-mv::after {
    background: url("../images/mv-bg-sp.webp") center top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: 141.7553191489%;
  }
}
.top-mv__inner {
  max-width: 1050px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .top-mv__inner {
    max-width: 100%;
  }
}
.top-mv__logo {
  width: min(33%, 475px);
}
@media screen and (max-width: 799px) {
  .top-mv__logo {
    width: 65%;
    margin: auto;
  }
}
@media screen and (min-width: 1400px) {
  .top-mv__logo {
    width: 475px;
  }
}

/*----------------------------------------------------------------------------
　slick
-----------------------------------------------------------------------------*/
.slick-slide:focus {
  outline: none;
}

.slick-slide {
  display: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-slider div {
  transition: none;
}

/*----------------------------------------------------------------------------
　top-important
-----------------------------------------------------------------------------*/
.top-important {
  width: 100%;
  margin: 20px 0 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .top-important {
    width: 100%;
    margin: 140px 0 0 0;
  }
}
@media screen and (min-width: 800px) {
  .top-important {
    padding-right: 5rem;
  }
}
.top-important__upper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 799px) {
  .top-important__upper {
    max-width: 100%;
    padding: 0 20px;
  }
}
.top-important__upper::after {
  content: "";
  position: absolute;
  left: calc(100% - 1px);
  bottom: 100%;
  width: 100%;
  height: 450px;
  border: 1px solid var(--color-font);
  border-bottom: none;
  border-right: none;
  border-radius: 60px 0 0 0;
}
@media screen and (max-width: 799px) {
  .top-important__upper::after {
    left: calc(100% - 21px);
    bottom: 100%;
    width: 100%;
    height: 150px;
    border-radius: 40px 0 0 0;
  }
}
.top-important__upper__inner {
  max-width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 799px) {
  .top-important__upper__inner {
    max-width: 100%;
    margin: 0 0 0 0;
  }
}
.top-important__title {
  padding: 0 0 15px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  border: 1px solid var(--color-font);
  border-top: none;
  border-left: none;
  border-radius: 0 0 60px 0;
}
@media screen and (max-width: 799px) {
  .top-important__title {
    font-size: 20px;
    border-radius: 0 0 40px 0;
  }
}
@media screen and (max-width: 799px) {
  .top-important__slider {
    width: 100%;
    padding: 0 0 0 20px;
    margin-top: 3.6rem;
  }
}
@media screen and (min-width: 800px) {
  .top-important__slider {
    width: calc(50% + 5rem);
    margin: 40px -5rem 0 auto;
  }
}
.top-important__slider .slide__item {
  width: 440px;
  margin: 0 25px 0 0;
}
@media screen and (max-width: 799px) {
  .top-important__slider .slide__item {
    width: 280px;
    margin: 0 15px 0 0;
  }
}
.top-important .lead__txt {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .top-important .lead__txt {
    margin: 18px 0 0;
    font-size: 12px;
  }
}
.top-important .text__link01 {
  margin: 20px 0 0;
}

.myphilosophy-top-card {
  cursor: pointer;
  position: relative;
}
.myphilosophy-top-card__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.myphilosophy-top-card__img {
  width: 100%;
  height: 0;
  padding-bottom: 116.252%;
  position: relative;
  overflow: hidden;
}
.myphilosophy-top-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
  transition: 0.2s ease-out;
}
.myphilosophy-top-card:hover .text__link01 a {
  color: var(--color-link);
  opacity: 1;
}
.myphilosophy-top-card:hover .myphilosophy-top-card__img img {
  opacity: 0.7;
}
.myphilosophy-top-card:nth-child(odd) .myphilosophy-top-card__img {
  border-bottom-left-radius: 40px;
}
.myphilosophy-top-card:nth-child(even) .myphilosophy-top-card__img {
  border-top-right-radius: 40px;
}

/*----------------------------------------------------------------------------
　top-news
-----------------------------------------------------------------------------*/
.top-news {
  width: 42%;
  max-width: 504px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .top-news {
    margin-top: 95px !important;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .top-news {
    padding-left: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .top-news {
    margin-left: calc((100vw - 1200px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .top-news {
    padding-left: 0;
  }
}
.top-news__eng {
  position: absolute;
  top: -44px;
  left: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 88px;
  height: 88px;
  border: 1px solid var(--color-font);
  border-radius: 50%;
  font-size: 22px;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 799px) {
  .top-news__eng {
    position: relative;
    top: inherit;
    left: inherit;
    width: 84px;
    height: 85px;
    font-size: 20px;
  }
  .top-news__eng::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    background: var(--color-font);
    width: 100vw;
    height: 1px;
    box-sizing: border-box;
  }
}
.top-news__inner {
  padding: 70px 45px 80px 20px;
  border: 1px solid var(--color-font);
  border-left: none;
  border-radius: 0 60px 60px 0;
  position: relative;
}
@media screen and (max-width: 799px) {
  .top-news__inner {
    max-width: 100%;
    padding: 0 0 0 0;
    border: none;
    border-radius: 0;
  }
}
.top-news__inner::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 100%;
  width: 100vw;
  border-bottom: 1px solid var(--color-font);
  box-sizing: border-box;
}
@media screen and (max-width: 799px) {
  .top-news__inner::before {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .top-news__list {
    margin: 15px 0 0;
  }
}
.top-news__list li {
  margin: 0 0 20px;
}
@media screen and (max-width: 799px) {
  .top-news__list li {
    margin: 0 0 15px;
  }
}
.top-news__list li:last-child {
  margin: 0 0 0;
}
.top-news__list .date {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .top-news__list .date {
    margin-right: 14px;
  }
}
.top-news__list .cate {
  display: inline-block;
  font-size: 12px;
}
.top-news__list .news__title {
  font-size: 16px;
}
.top-news__list .news__title a {
  text-decoration: underline;
  font-weight: 300;
}
.top-news__list .news__title a:hover {
  color: var(--color-link);
  opacity: 1;
}
.top-news .sec__inner {
  margin: auto;
}
@media screen and (max-width: 799px) {
  .top-news .sec__inner {
    max-width: 100%;
  }
}
.top-news .text__link01 {
  margin: 30px 0 0;
}
@media screen and (max-width: 799px) {
  .top-news .text__link01 {
    margin: 25px 0 0;
  }
}

/*----------------------------------------------------------------------------
　top-live
-----------------------------------------------------------------------------*/
.top-live {
  min-height: 490px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .top-live {
    margin-top: 90px;
    min-height: inherit;
  }
}
@media screen and (max-width: 799px) {
  .top-live__img {
    width: calc(100% - 20px);
    height: auto;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 800px) {
  .top-live__img {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 30%;
    height: 35%;
  }
}
@media screen and (min-width: 1000px) {
  .top-live__img {
    height: 490px;
    width: 30%;
    bottom: auto;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.top-live__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 40px 0 0;
}
@media screen and (max-width: 799px) {
  .top-live__img img {
    height: auto;
    border-radius: 0;
  }
}
.top-live__inner {
  width: 58%;
  margin: 0 0 0 auto;
  position: relative;
}
@media screen and (max-width: 799px) {
  .top-live__inner {
    width: 100%;
    margin: 0 0 0 0;
  }
}
.top-live__inner::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  right: 100%;
  width: 70px;
  height: 70px;
  border: 1px solid var(--color-font);
  border-bottom: none;
  border-right: none;
  border-radius: 60px 0 0 0;
}
@media screen and (max-width: 799px) {
  .top-live__inner::after {
    top: inherit;
    right: inherit;
    bottom: 100%;
    left: calc(100% - 1px);
    width: 100%;
    height: 150px;
    border: 1px solid var(--color-font);
    border-bottom: none;
    border-right: none;
    border-radius: 40px 0 0 0;
  }
}
.top-live__block {
  margin: 20px 0 0;
  padding: 60px 100px 80px 0;
  border: 1px solid var(--color-font);
  border-left: none;
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 799px) {
  .top-live__block {
    padding: 0 0 0 0;
    border: none;
    border-radius: 0;
    margin-top: 47px;
  }
}
.top-live__title01 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 799px) {
  .top-live__title01 {
    padding: 0 0 15px;
    font-size: 20px;
    border: 1px solid var(--color-font);
    border-top: none;
    border-left: none;
    border-radius: 0 0 40px 0;
  }
}
.top-live__title02 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 799px) {
  .top-live__title02 {
    font-size: 24px;
  }
}
.top-live .text {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}
.top-live .text__link01 {
  margin: 30px 0 0;
}
@media screen and (max-width: 799px) {
  .top-live .text__link01 {
    margin: 25px 0 0;
  }
}
.top-live .sec__inner {
  max-width: 1200px;
  margin: auto;
  padding: 30px 0 0;
  position: relative;
}
@media screen and (max-width: 799px) {
  .top-live .sec__inner {
    max-width: 100%;
    margin: 50px 0 0;
    padding: 0 20px 0;
  }
}
.top-live .sec__inner::after {
  content: "";
  position: absolute;
  top: calc(100% - 250px);
  right: calc(65% - 1px);
  width: 100vw;
  height: 80px;
  border: 1px solid var(--color-font);
  border-top: none;
  border-radius: 0 0 60px 0;
}
@media screen and (max-width: 799px) {
  .top-live .sec__inner::after {
    display: none;
  }
}
.top-live .sec__inner::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 35%;
  width: 100vw;
  height: calc(100% - 180px);
  border: 1px solid var(--color-font);
  border-bottom: none;
  border-radius: 60px 0 0 0;
}
@media screen and (max-width: 799px) {
  .top-live .sec__inner::before {
    display: none;
  }
}

/*----------------------------------------------------------------------------
　top-slide__loop
-----------------------------------------------------------------------------*/
.top-slide__loop {
  margin: 70px 0 80px;
}
@media screen and (max-width: 799px) {
  .top-slide__loop {
    margin: 70px 0 65px;
  }
}
.top-slide__loop .slide__item {
  width: 460px;
  margin: 0 12px;
}
@media screen and (max-width: 799px) {
  .top-slide__loop .slide__item {
    width: 310px;
    margin: 0 8px;
  }
}

/*------------------------------
  component__interview
------------------------------*/
.component__interview {
  margin: 100px 0 100px;
}
@media screen and (max-width: 799px) {
  .component__interview {
    margin: 50px 0 50px;
  }
}
.component__interview_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 799px) {
  .component__interview_list {
    display: block;
  }
}
.component__interview_list .img__box {
  position: relative;
}
.component__interview_list .img__box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  background: url("../images/component__interview-icon01.png") left top no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 799px) {
  .component__interview_list .img__box::before {
    top: 5px;
    left: 6px;
  }
}
.component__interview_list .text__link01 {
  margin: 20px 0 0;
}
@media screen and (max-width: 799px) {
  .component__interview_list .text__link01 {
    margin: 10px 0 0;
  }
}
.component__interview_list .text__link01 a {
  font-size: 18px;
}
@media screen and (max-width: 799px) {
  .component__interview_list .text__link01 a {
    font-size: 16px;
  }
}
.component__interview_list .interview__txt {
  margin: 15px 0 0;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .component__interview_list .interview__txt {
    margin: 10px 0 0;
  }
}
.component__interview_list .interview__item {
  width: calc(50% - 25px);
}
@media screen and (max-width: 799px) {
  .component__interview_list .interview__item {
    width: 100%;
    margin: 0 0 40px;
  }
  .component__interview_list .interview__item:last-child {
    margin: 0 0 0;
  }
}
.component__interview_list .name {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .component__interview_list .name {
    font-size: 12px;
  }
}
.component__interview_list .name__box {
  display: flex;
  gap: 0 60px;
}
@media screen and (max-width: 799px) {
  .component__interview_list .name__box {
    display: flex;
    justify-content: space-between;
    gap: 0 10px;
  }
  .component__interview_list .name__box .name {
    width: 50%;
    font-size: 10px;
  }
}
.component__interview_list .name .large {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  .component__interview_list .name .large {
    font-size: 18px;
  }
}
.component__interview_list .name .small {
  font-size: 12px;
  font-weight: 300;
}

@media screen and (max-width: 799px) {
  .interview__parts01 {
    width: calc(100% + 60px);
    margin-left: -30px;
    padding: 0 0 60px;
    border-bottom: 1px solid var(--color-font);
  }
}
.interview__parts01 .eng {
  display: inline-block;
  font-size: 24px;
  font-weight: 300;
  position: relative;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 799px) {
  .interview__parts01 .eng {
    font-size: 20px;
  }
}
.interview__parts01 .eng::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  width: 100vw;
  margin-left: 20px;
  border-top: 1px solid var(--color-font);
}
@media screen and (max-width: 799px) {
  .interview__parts01 .eng::after {
    display: none;
  }
}
.interview__parts01 .sign {
  width: 100%;
  max-width: 400px;
  margin: 40px 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .sign {
    width: 70%;
    margin: 20px 0 0;
  }
}
.interview__parts01__inner {
  min-height: 540px;
  position: relative;
}
@media screen and (max-width: 799px) {
  .interview__parts01__inner {
    min-height: inherit;
  }
}
.interview__parts01 .boxLeft {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .boxLeft {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--color-font);
  }
}
.interview__parts01 .boxRight {
  max-width: 1200px;
  margin: auto;
  padding: 30px 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .boxRight {
    max-width: 100%;
    margin: 45px 0 0;
    padding: 0 30px 0;
  }
}
.interview__parts01 .img__box {
  position: relative;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .img__box {
    padding-bottom: 90%;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts01 .img__box {
    width: calc(100% + 5rem);
    margin-left: -5rem;
    padding-bottom: calc(76.7% + 3.8rem);
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts01 .img__box {
    width: calc(100% + 12.5rem);
    margin-left: -12.5rem;
    padding-bottom: calc(77.5% + 9.6rem);
  }
}
.interview__parts01 .img__box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover;object-position: center;";
  border-radius: 0 40px 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .img__box img {
    object-position: 50% 20%;
    border-radius: 0;
  }
}
.interview__parts01 .img__box span {
  display: grid;
  place-content: center;
  place-items: center;
  position: absolute;
  top: 10px;
  right: -44px;
  width: 87px;
  height: 87px;
  background: #fff;
  border: 1px solid var(--color-font);
  border-radius: 50%;
  line-height: 1.2;
  font-family: var(--font-family-en);
  padding-top: 5px;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .img__box span {
    top: inherit;
    bottom: -44px;
    right: inherit;
    left: 30px;
  }
}
.interview__parts01 .img__box span br {
  display: none;
}
.interview__parts01 .txt__box {
  max-width: calc(47% - 44px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .txt__box {
    max-width: 100%;
    margin: 0 0 0 0;
  }
}
.interview__parts01 .name__wrap {
  max-width: 1200px;
  margin: auto;
  padding: 40px 80px;
  position: relative;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .name__wrap {
    max-width: 100%;
    margin: 30px 0 0;
    padding: 0 20px;
  }
}
.interview__parts01 .name__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  border: 1px solid var(--color-font);
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 60px;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .name__wrap::after {
    display: none;
  }
}
.interview__parts01 .name__wrap::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  height: 100%;
  border-left: 1px solid var(--color-font);
  z-index: -1;
}
.interview__parts01 .name__wrap .name {
  font-size: 10px;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .interview__parts01 .name__wrap .name {
    font-size: 14px;
  }
}
.interview__parts01 .name__wrap .name .large {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (min-width: 800px) {
  .interview__parts01 .name__wrap .name .large {
    font-size: 20px;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts01 .name__wrap--harf::after {
    width: 50%;
  }
}
.interview__parts01 .interview__title01 {
  margin: 30px 0;
  font-size: 32px;
  line-height: 1.5 !important;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .interview__title01 {
    font-size: 23px;
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts01 .interview__title01 {
    width: calc(100% + (100vw - 1100px) / 2);
  }
}
@media screen and (min-width: 800px) and (max-width: 999px) {
  .interview__parts01 .interview__title01 br {
    display: none;
  }
}
.interview__parts01 .interview__title01 .small {
  display: block;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-family-en);
  margin-bottom: 2rem;
}
@media screen and (max-width: 799px) {
  .interview__parts01 .interview__title01 .small {
    font-size: 18px;
    margin-bottom: 1rem;
  }
}
.interview__parts01 .interview__title01 .post-part {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-font);
  display: block;
}

.interview__parts02 {
  padding: 90px 80px;
  position: relative;
}
@media screen and (max-width: 799px) {
  .interview__parts02 {
    width: calc(100% + 40px);
    margin: 0 20px 0 -20px;
    padding: 40px 20px;
  }
}
.interview__parts02 p {
  margin: 0 0 0;
}
@media screen and (min-width: 800px) {
  .interview__parts02--simple::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: 50%;
    height: calc(100% + 70px);
    border-top: 1px solid var(--color-font);
    border-right: 1px solid var(--color-font);
    border-top-right-radius: 60px;
    pointer-events: none;
  }
}

.interview__parts03 {
  margin: 70px 0 0;
  padding: 80px 80px;
  border: 1px solid var(--color-font);
  border-radius: 60px 0 60px 60px;
  position: relative;
}
@media screen and (max-width: 799px) {
  .interview__parts03 {
    margin: 10rem 0 0;
    padding: 40px 30px;
    padding-right: 0;
    border: 1px solid var(--color-font);
    border-bottom: none;
    border-right: none;
    border-radius: 40px 0 0 0;
  }
}
.interview__parts03::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 100%;
  width: 100vw;
  border-top: 1px solid var(--color-font);
}
.interview__parts03 .name {
  font-size: 10px;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .interview__parts03 .name {
    font-size: 12px;
  }
}
.interview__parts03 .name .large {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.interview__parts04 {
  margin: 150px 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts04 {
    margin: 50px 0 0;
  }
}
.interview__parts04 .flex__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .interview__parts04 .flex__box {
    display: block;
  }
}
.interview__parts04 .interview__title02 {
  display: inline-block;
  margin: 0 0 40px;
  font-size: 26px;
  position: relative;
  font-weight: 400 !important;
}
@media screen and (max-width: 799px) {
  .interview__parts04 .interview__title02 {
    padding: 0 0 0 10px;
    margin: 0 0 20px;
    font-size: 24px;
  }
}
.interview__parts04 .interview__title02::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  width: 100vw;
  margin-right: 20px;
  border-top: 1px solid var(--color-font);
}
@media screen and (max-width: 799px) {
  .interview__parts04 .interview__title02::before {
    top: 22px;
    transform: translate(0, 0);
    width: 20px;
    margin-right: 0;
    border-top: 1px solid var(--color-font);
  }
}
.interview__parts04 .interview__comment p {
  margin: 0 0 30px;
}
@media screen and (max-width: 799px) {
  .interview__parts04 .interview__comment p {
    margin: 0 0 20px;
  }
}
.interview__parts04 .interview__comment p:last-child {
  margin: 0 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts04 .flex__boxLeft {
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts04 .flex__boxLeft {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts04 .flex__boxLeft {
    width: calc(100% - 345px);
  }
}
@media screen and (max-width: 799px) {
  .interview__parts04 .flex__boxRight {
    width: calc(100% + 30px);
    margin: 40px 0 0 auto;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts04 .flex__boxRight {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts04 .flex__boxRight {
    width: 470px;
  }
}
@media screen and (max-width: 799px) {
  .interview__parts04:nth-child(even) .flex__boxRight {
    margin: 40px auto 0 -30px;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts04:nth-child(even) .flex__boxRight {
    width: calc(50% + 3rem);
    margin-left: -5rem;
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts04:nth-child(even) .flex__boxRight {
    width: calc(280px - max(-10vw, -17rem));
    margin-left: max(-10vw, -17rem);
  }
}
@media screen and (min-width: 800px) {
  .interview__parts04:nth-child(even) .flex__box {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 800px) {
  .interview__parts04:nth-child(odd) .flex__boxRight {
    width: calc(50% + 3rem);
    margin-right: -5rem;
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts04:nth-child(odd) .flex__boxRight {
    width: calc(280px - max(-10vw, -17rem));
    margin-right: max(-10vw, -17rem);
  }
}

.interview__parts05 {
  max-width: 1040px;
  margin: 150px 0 0;
  padding: 60px 0 0;
  position: relative;
  margin-right: -5rem;
}
@media screen and (max-width: 799px) {
  .interview__parts05 {
    margin: 80px 0 0;
    padding: 40px 30px;
    border: 1px solid var(--color-font);
    border-bottom: none;
    border-right: none;
    border-radius: 40px 0 0 0;
    margin-right: -3rem;
  }
}
.interview__parts05 p {
  padding: 0 40px 0 0;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 799px) {
  .interview__parts05 p {
    padding: 0 0 0 0;
  }
}
.interview__parts05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border: 1px solid var(--color-font);
  border-bottom: 0;
  border-right: none;
  border-radius: 60px 0 0 0;
}
@media screen and (max-width: 799px) {
  .interview__parts05::before {
    display: none;
  }
}
.interview__parts05 .img__box {
  width: 345px;
}
@media screen and (max-width: 799px) {
  .interview__parts05 .img__box {
    width: 100%;
    margin: 20px 0 0;
  }
}
.interview__parts05 .flex__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .interview__parts05 .flex__box {
    display: block;
  }
}
.interview__parts05 .flex__boxLeft {
  width: 150px;
}
@media screen and (max-width: 799px) {
  .interview__parts05 .flex__boxLeft {
    width: 50%;
    margin: -30px auto 0;
  }
}
.interview__parts05 .flex__boxRight {
  width: calc(100% - 200px);
}
@media screen and (max-width: 799px) {
  .interview__parts05 .flex__boxRight {
    width: 100%;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 799px) {
  .interview__parts05 .name_item {
    display: block;
    padding: 0 0 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts05 .name_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 100px 0 0;
  }
}
@media screen and (max-width: 799px) {
  .interview__parts05 .name {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .interview__parts05 .name {
    width: calc(100% - 370px);
  }
}
.interview__parts05 .name .large {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
}
.interview__parts05 .name .small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7 !important;
  color: #000;
}

/*------------------------------
  component__interview__b
------------------------------*/
@media screen and (min-width: 1000px) {
  .component__interview.type-b > .container:first-child {
    padding-right: 0;
    padding-bottom: 15rem;
  }
}
@media screen and (min-width: 1400px) {
  .component__interview.type-b > .container:first-child {
    padding-bottom: 23rem;
  }
}
.component__interview.type-b .interview__parts01 .name__wrap {
  padding: 40px 80px;
}
@media screen and (max-width: 799px) {
  .component__interview.type-b .interview__parts01 .name__wrap {
    margin-top: 30px;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1000px) {
  .component__interview.type-b .interview__parts01 .name__wrap {
    padding: 5rem 0 5rem 5rem;
  }
}
.component__interview.type-b .interview__parts01 .name__wrap .name__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  .component__interview.type-b .interview__parts01 .name__wrap--pb {
    padding-bottom: 15rem;
  }
}

.excerpt p {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #000 !important;
}

.header {
  width: 100%;
  padding: 20px 20px;
  position: relative;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 799px) {
  .header {
    width: 100%;
    padding: 10px 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 799px) and (max-width: 799px) {
  .header::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 80px;
    left: 51px;
    background: var(--color-font);
    width: auto;
    height: 1px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    pointer-events: none;
  }
}
.header__body {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 799px) {
  .header__body {
    display: block;
  }
}
.header__logo {
  width: 156px;
}
@media screen and (max-width: 999px) {
  .header__logo {
    width: 85px;
  }
}
@media screen and (max-width: 799px) {
  .header__logo {
    width: 58px;
    margin: 8px 0 0;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1000px) {
  .header__logo {
    margin-left: 20px;
  }
}
.header__logo a {
  display: block;
}
.header--scrolled {
  background: #fff;
}

/*----------------------------------------------------------------------------
　top header
-----------------------------------------------------------------------------*/
.top .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .top .header {
    position: fixed;
  }
}

.langPill {
  position: relative;
  width: 25px;
  height: 12px;
  background: #000;
  border-radius: 100px;
}
.langPill .pillKnob {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.langLabel {
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  transition: 0.2s ease-out;
  font-family: var(--font-family-en);
}
.langLabel:hover {
  opacity: 0.6;
}

.bogoflags {
  display: none !important;
}

.langToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 799px) {
  .langToggle {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
  }
}
.langToggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.langToggle[data-state=en] .pillKnob {
  transform: translate(13px, -50%);
}
.langToggle[data-state=jp] .langLabel:nth-of-type(1), .langToggle[data-state=en] .langLabel:nth-of-type(2) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.bogo-language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.bogo-language-switcher .ja {
  position: relative;
  order: 1;
}
.bogo-language-switcher .en {
  position: relative;
  order: 3;
}
.bogo-language-switcher::before {
  content: "";
  display: block;
  width: 25px;
  height: 13px;
  border-radius: 25px;
  background: #000;
  order: 2;
}
.bogo-language-switcher li.current a {
  text-decoration: underline !important;
}
.bogo-language-switcher li.current::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 11px;
  left: 28px;
}
.bogo-language-switcher li.en.current::before {
  left: -15px;
}

.gnav__wrap {
  width: calc(100% - 180px);
}
@media screen and (max-width: 999px) {
  .gnav__wrap {
    width: calc(100% - 90px);
  }
}
@media screen and (max-width: 799px) {
  .gnav__wrap {
    display: none;
  }
}
.gnav__upper {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 15px;
}

.gnav-sub__link {
  margin: 0 20px 0 0;
  font-size: 12px;
}
.gnav-sub__link a {
  padding: 0 15px 0 0;
  position: relative;
}
.gnav-sub__link--window a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url("../images/icon-link.webp") left top no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}

/*---------------------
  pc gnav
---------------------*/
.gnav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 800px) {
  .gnav-list {
    gap: 2vw;
  }
}
@media screen and (min-width: 1000px) {
  .gnav-list {
    gap: 1.5vw;
  }
}
@media screen and (min-width: 1400px) {
  .gnav-list {
    gap: 4rem;
  }
}
.gnav-list__item {
  position: relative;
}
@media screen and (min-width: 800px) {
  .gnav-list__item:nth-child(1) .gnav-list__link {
    display: flex;
    align-items: center;
    width: 18px;
  }
  .gnav-list__item:hover .gnav-list__child {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}
.gnav-list__link {
  display: block;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 999px) {
  .gnav-list__link {
    font-size: 13px;
  }
}
.gnav-list__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background: var(--color-font);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .gnav-list__link:hover {
    opacity: 1;
  }
  .gnav-list__link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 800px) {
  .gnav-list__child {
    visibility: hidden;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 150%;
    z-index: 0;
    transition: all 0.5s;
    transform: translateX(-50%) scaleY(0);
    transform-origin: center top;
    opacity: 0;
  }
}
.gnav-list__child a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 799px) {
  .gnav-list__child a {
    text-decoration: underline;
  }
}
@media screen and (min-width: 800px) {
  .gnav-list__child a {
    font-size: 13px;
    display: inline-block;
  }
}
.gnav-list__child a::before {
  content: "〉";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.gnav-list__child a::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -2px;
  background: var(--color-font);
  width: calc(100% - 20px);
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 800px) {
  .gnav-list__child a::before {
    content: "-";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }
  .gnav-list__child a:hover::after {
    transform: scaleX(1);
  }
}
.gnav-list__child li {
  margin: 0 0 10px;
}
.gnav-list__child li:last-child {
  margin: 0 0 0;
}

/*---------------------
  sp gnav
---------------------*/
.menu-btn {
  display: none;
}
@media screen and (max-width: 799px) {
  .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 10px;
    right: 16px;
    width: 50px;
    height: 50px;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid var(--color-font);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
  }
  .menu-btn__line {
    display: block;
    background: var(--color-font);
    width: 26px;
    height: 1px;
    margin: 7px auto 0;
    transition: all 0.5s ease-in-out;
  }
  .menu-btn__txt {
    display: block;
    margin: 3px 0 -3px 0;
    font-size: 8px;
    text-align: center;
  }
}

@media screen and (max-width: 799px) {
  /* ナビゲーションアイコン：アクティブ */
  .menu-open .menu-btn .menu-btn__line--top {
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    -ms-transform: translateY(7px) translateX(0) rotate(45deg);
    transform: translateY(7px) translateX(0) rotate(45deg);
  }
  .menu-open .menu-btn .menu-btn__line--center {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .menu-open .menu-btn .menu-btn__line--bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
  }
}
@media screen and (max-width: 799px) {
  #sp-gnav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  #sp-gnav .sp-gnav__inner {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color-bg);
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transform: translateX(100%);
    z-index: 9999;
  }
  .sp-gnav-sub__link {
    padding: 24px 0;
    border-bottom: 1px dashed var(--color-line);
  }
  .sp-gnav-sub__link li {
    margin: 0 0 15px;
    font-size: 12px;
  }
  .sp-gnav-sub__link li a {
    display: inline-block;
    font-weight: 400;
    text-decoration: underline;
    position: relative;
  }
  .sp-gnav-sub__link li:last-child {
    margin: 0;
    font-size: 12px;
  }
  .sp-gnav-sub__link li:last-child a {
    padding: 0 20px 0 0;
  }
  .sp-gnav-sub__link li:last-child a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    background: url("../images/icon-link.webp") left top no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
  }
  .sp-gnav .langPill {
    width: 40px;
    height: 20px;
  }
  .sp-gnav .langPill .pillKnob {
    left: 3px;
    width: 12px;
    height: 12px;
  }
  .sp-gnav .langLabel {
    font-size: 20px;
  }
  .sp-gnav .langToggle__wrap {
    margin: 30px 0 0;
    text-align: center;
  }
  .sp-gnav-list .gnav-list__item {
    padding: 15px 0;
    border-bottom: 1px dashed var(--color-line);
  }
  .sp-gnav-list .gnav-list__link {
    display: block;
    padding: 0 0 0 40px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    position: relative;
  }
  .sp-gnav-list .gnav-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background: url("../images/arrow01.webp") left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
  }
  .sp-gnav-list .gnav-list__child {
    padding: 15px 0 0;
    margin: 0 0 -10px;
  }
  .sp-gnav-list .gnav-list__child li {
    padding: 15px 0 15px 40px;
    border-top: 1px dashed var(--color-line);
  }
  .menu-open #sp-gnav .sp-gnav__inner {
    position: fixed;
    top: 0;
    transform: translateX(0);
    transform: translateZ(0);
  }
  .sp-gnav .langToggle[data-state=en] .pillKnob {
    transform: translate(22px, -50%);
  }
}
/*----------------------------------------------------------------------------
　footer
-----------------------------------------------------------------------------*/
.footer {
  width: 100%;
  padding-top: 130px;
}
@media screen and (max-width: 799px) {
  .footer {
    width: 100%;
  }
}
.footer__img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 205px;
}
.footer__img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
}
@media screen and (max-width: 799px) {
  .footer__nav {
    background: var(--color-bg);
    padding: 40px 20px;
  }
}
.footer .sp-gnav {
  max-width: 376px;
  margin: 0 auto;
}
.footer__main {
  padding: 50px 0;
}
@media screen and (max-width: 799px) {
  .footer__main {
    padding: 30px 20px;
  }
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  margin: auto;
  gap: 2rem;
}
@media screen and (max-width: 799px) {
  .footer__body {
    display: block;
    max-width: 376px;
  }
}
@media screen and (min-width: 800px) {
  .footer__body {
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .footer__body {
    gap: 4rem;
  }
}
@media screen and (min-width: 1400px) {
  .footer__body {
    padding-inline: 0;
  }
}
.footer__link {
  font-size: 12px;
  font-weight: 300;
}
.footer__link a {
  text-decoration: underline;
}
.footer__link a:hover {
  color: var(--color-link);
  opacity: 1;
}
.footer__logo01 {
  width: 140px;
}
.footer__logo01 a {
  display: block;
}
@media screen and (max-width: 799px) {
  .footer__logo01 {
    width: 80%;
    margin: auto;
  }
  .footer__logo01 img {
    width: 50%;
  }
}
@media screen and (max-width: 799px) {
  .footer__logo02 {
    width: 80%;
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 800px) {
  .footer__logo02 {
    width: 260px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__logo02 {
    width: 305px;
  }
}
.footer__logo02 a {
  display: block;
}
.footer__address {
  width: auto;
}
@media screen and (max-width: 799px) {
  .footer__address {
    width: 80%;
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 1000px) {
  .footer__address {
    flex: 1;
  }
}
.footer__address .org {
  font-size: 14px;
}
.footer__address .org__name {
  font-weight: 400;
}
.footer__address .org__address, .footer__address .org__mail {
  font-weight: 300;
}
.footer__pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 30px;
  z-index: 111;
}
.footer__pagetop a {
  display: block;
}
.footer__copyright {
  background: var(--color-font);
  padding: 5px 0;
  color: #fff;
  font-size: 10px;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 799px) {
  .footer__copyright {
    padding: 3px 0;
  }
}

.single-news .footer {
  padding-top: 2.5rem;
}

.home .footer,
.single-my-philosophy .footer {
  padding-top: 0;
}

.grid {
  display: grid;
  gap: 5.5rem 4rem;
}
@media screen and (min-width: 1000px) {
  .grid {
    gap: 8rem;
  }
}
@media screen and (min-width: 800px) {
  .grid--columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 800px) {
  .grid--columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 799px) {
  .grid--sp-reverse div:nth-of-type(1) {
    order: 2;
  }
  .grid--sp-reverse div:nth-of-type(2) {
    order: 1;
  }
}
.grid--autofill {
  grid-template-columns: repeat(auto-fill, minmax(var(--card-width), 1fr));
}
.grid--has-subgrid > * {
  display: grid;
  grid-template-rows: subgrid;
}
.grid--subgrid-row-span-4 > * {
  grid-row: span 4;
}
@media screen and (min-width: 1000px) {
  .grid--pc-right {
    padding-left: 90px;
    margin-right: -90px;
  }
}
@media screen and (min-width: 1000px) {
  .grid--pc-left {
    padding-right: 90px;
    margin-left: -90px;
  }
}
@media screen and (max-width: 799px) {
  .grid--gap-sp-non {
    gap: 0;
  }
}
@media screen and (min-width: 800px) {
  .grid--border-ad01 {
    position: relative;
    padding-left: 5rem;
  }
  .grid--border-ad01::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    border-top: 1px solid var(--color-font);
    border-right: 1px solid var(--color-font);
    border-top-right-radius: 60px;
    position: absolute;
    top: 0;
    right: 100%;
  }
  .grid--border-ad01::after {
    content: "";
    display: block;
    width: 100vw;
    height: 60px;
    border-bottom: 1px solid var(--color-font);
    border-left: 1px solid var(--color-font);
    border-bottom-left-radius: 60px;
    position: absolute;
    top: 100%;
    left: -1px;
  }
}
@media screen and (min-width: 1000px) {
  .grid--border-ad01 {
    padding-top: 5rem;
    padding-left: 8rem;
    grid-template-columns: 1fr 1.3fr;
  }
  .grid--border-ad01::before {
    height: calc(100% - 8.5rem);
  }
  .grid--border-ad01::after {
    top: calc(100% - 8.5rem);
  }
}
@media screen and (min-width: 800px) {
  .grid--border-ad02 {
    position: relative;
    padding-top: 7.7rem;
  }
  .grid--border-ad02::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    border-bottom: 1px solid var(--color-font);
    border-right: 1px solid var(--color-font);
    border-bottom-right-radius: 60px;
    position: absolute;
    bottom: 1px;
    right: 60%;
  }
  .grid--border-ad02::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    border-top: 1px solid var(--color-font);
    position: absolute;
    top: 34px;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .grid--border-ad02 {
    grid-template-columns: 1.3fr 1fr;
    padding-bottom: 5rem;
  }
}

.tensen-box {
  padding: 3rem 0 2rem;
  border-top: 1px dashed var(--color-line);
  border-bottom: 1px dashed var(--color-line);
}
@media screen and (min-width: 800px) {
  .tensen-box {
    padding: 3.5rem 0;
  }
}

.tensen-box__inner {
  padding-left: 40px;
}

.head-text {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .head-text {
    font-size: 20px;
  }
}

.h3 {
  font-size: 20px;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
@media screen and (min-width: 800px) {
  .h3 {
    font-size: 24px;
  }
}

.h4 {
  font-size: 20px;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
.h4:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (min-width: 800px) {
  .h4:not(:first-child) {
    margin-top: 6rem;
  }
}

.h5 {
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.h5--mt {
  margin-top: 4rem;
}
@media screen and (min-width: 800px) {
  .h5--mt {
    margin-top: 6rem;
  }
}

.published-box {
  border-top: 1px solid var(--color-font);
  border-bottom: 1px solid var(--color-font);
  padding: 6.7rem 5.5rem;
  margin-top: 9rem;
  position: relative;
  max-width: 1050px;
  margin-left: -30px;
  width: calc(100% + 60px);
}
@media screen and (min-width: 800px) {
  .published-box {
    width: 100%;
    padding: 3.8rem 0 4.5rem;
    margin-top: 15rem;
    border-radius: 40px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--color-font);
  }
}
.published-box::before {
  content: "Published";
  display: block;
  width: 87px;
  height: 87px;
  line-height: 85px;
  text-align: center;
  border: 1px solid var(--color-font);
  background: #fff;
  border-radius: 50%;
  font-weight: 300;
  font-size: 16px;
  font-family: var(--font-family-en);
  position: absolute;
  top: -43px;
  left: 15px;
}
@media screen and (min-width: 800px) {
  .published-box::before {
    left: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .published-box::before {
    left: 150px;
  }
}
.published-box__inner {
  max-width: 500px;
  margin: 0 auto;
}
.published-box .grid {
  gap: 2.5rem;
}
@media screen and (min-width: 800px) {
  .published-box .grid {
    grid-template-columns: 1fr 3fr;
    align-items: center;
  }
}

.myphilosophy-list {
  display: grid;
  gap: 6.7rem;
  margin-top: 8rem;
}
@media screen and (min-width: 800px) {
  .myphilosophy-list {
    grid-template-columns: 1fr 1fr;
    gap: 9rem 5rem;
    margin-top: 4.8rem;
  }
}

.myphilosophy-card {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .myphilosophy-card:hover .myphilosophy-card__copy a, .myphilosophy-card:hover .pager-item__copy a {
    color: var(--color-link);
  }
  .myphilosophy-card:hover .myphilosophy-card__thumb {
    opacity: 0.7;
  }
}
.myphilosophy-card__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.myphilosophy-card__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 54%;
  overflow: hidden;
}
.myphilosophy-card__image .circle-text {
  position: absolute;
  top: 8px;
  left: 13px;
  z-index: 2;
  font-size: 14px;
}
.myphilosophy-card__thumb {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
  transition: 0.2s ease-out;
}
.myphilosophy-card__title, .pager-item__title {
  display: block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  color: #000;
}
.myphilosophy-card__copy, .pager-item__copy {
  margin-top: 1rem !important;
}
@media screen and (min-width: 800px) {
  .myphilosophy-card__copy, .pager-item__copy {
    margin-top: 1.5rem !important;
  }
}
.myphilosophy-card:nth-child(odd) .myphilosophy-card__image {
  border-top-right-radius: 40px;
}
.myphilosophy-card:nth-child(even) .myphilosophy-card__image {
  border-bottom-left-radius: 40px;
}

.circle-text {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: var(--color-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font-family-en);
  padding-top: 5px;
  pointer-events: none;
}

.relation-link {
  position: relative;
  display: inline-block;
  margin-top: 5rem;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .relation-link:hover .text__link01 a {
    color: var(--color-link);
  }
  .relation-link:hover .relation-link__title {
    color: var(--color-link);
  }
}
.relation-link .text__link01 {
  margin-top: 0;
  pointer-events: none;
}
.relation-link__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.relation-link__title {
  display: block;
  text-decoration: underline;
  margin-top: 1.2rem;
  font-size: 1.8rem;
  font-weight: 400 !important;
  transition: 0.2s ease-out;
}
.relation-link__title .post-part {
  display: inline-block;
  text-decoration: none;
  margin-right: 1rem;
  font-size: 1.6rem;
}

.refine {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 800px) {
  .refine {
    gap: 1.5rem 3rem;
  }
}
.refine__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--color-font);
  color: var(--color-font);
  font-size: 14px;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 40px;
}
.refine__btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-font);
  border-right: 1px solid var(--color-font);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .refine__btn {
    transition: 0.2s ease-out;
  }
  .refine__btn:hover {
    background: #D7E1EF;
    opacity: 1;
  }
}
.refine__btn--active {
  background: #D7E1EF;
  pointer-events: none;
}

.ctg-name {
  display: block;
  padding: 3rem 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  font-size: 2rem;
  font-weight: 400 !important;
  color: var(--color-font);
}

.archive-news-list {
  margin: 0;
}
.archive-news-list li {
  margin: 0;
  padding: 2rem 0 4rem;
}
.archive-news-list li:not(:first-child) {
  border-top: 1px dashed var(--color-line);
}
.archive-news-list li .news__title {
  position: relative;
}
.archive-news-list li .news__title a {
  position: relative;
  display: inline-block;
  padding: 2px 0 2px 40px;
  margin-top: 1rem;
}
.archive-news-list li .news__title a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background: url("../images/arrow01.webp") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}
.archive-news-list--reports {
  margin-top: 6.5rem;
  border-top: 1px dashed var(--color-line);
}
@media screen and (min-width: 800px) {
  .archive-news-list--reports {
    margin-top: 10rem;
  }
}
.archive-news-list--reports li .news__title {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.textlink {
  display: inline-block;
  font-weight: 300;
  margin: 1rem 0;
}
.textlink span {
  text-decoration: underline;
}
.textlink--pdf {
  padding-right: 35px;
  position: relative;
}
.textlink--pdf::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url(../images/icon-pdf.webp) 0 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.textlink--window {
  padding-right: 30px;
  position: relative;
}
.textlink--window::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: url("../images/icon-link.webp") left top no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
}
@media screen and (min-width: 1000px) {
  .textlink {
    transition: 0.2s ease-out;
  }
  .textlink:hover {
    opacity: 1;
  }
  .textlink:hover span {
    color: var(--color-link);
  }
}

.news-head {
  margin-bottom: 4rem;
}
.news-head__time {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 300;
  vertical-align: middle;
}
@media screen and (min-width: 800px) {
  .news-head__time {
    font-size: 16px;
  }
}
.news-head__ctg {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  .news-head__ctg {
    font-size: 14px;
  }
}
.news-head__title {
  margin-top: 3rem;
}

.border-title {
  display: block;
  font-size: 20px;
  color: #11BDB8 !important;
  font-weight: 400 !important;
  padding-top: 3.3rem;
  border-top: 1px solid var(--color-line);
  margin-top: 9rem;
  margin-bottom: 4rem;
}

.table-dl {
  width: 100%;
  border-bottom: 1px solid var(--color-line);
}
.table-dl tr {
  border-top: 1px solid var(--color-line);
}
.table-dl th {
  background: var(--color-bg);
}
.table-dl th, .table-dl td {
  padding: 1.2rem 1.3rem;
}
@media screen and (min-width: 800px) {
  .table-dl th, .table-dl td {
    padding: 1.2rem 1.8rem;
  }
}

.text-purple {
  color: #D09DFA;
}

.table-wrap {
  overflow-x: auto;
  display: block;
}

.table-simple {
  width: 100%;
  min-width: 600px;
  margin-top: 2rem;
  margin-bottom: 7rem;
}
.table-simple th, .table-simple td {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--color-line);
}
.table-simple th {
  text-align: center;
}

.link-wrap {
  margin-top: 8rem;
}
@media screen and (min-width: 800px) {
  .link-wrap {
    margin-top: 6rem;
  }
}
.link-wrap__item {
  border-top: 1px solid var(--color-line);
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media screen and (min-width: 800px) {
  .link-wrap__item {
    grid-template-columns: 1fr 2fr;
    gap: 3.8rem;
  }
}
@media screen and (min-width: 1000px) {
  .link-wrap__item {
    grid-template-columns: 220px 1fr;
    padding: 6rem 0;
  }
}
.link-wrap__item:last-child .link-wrap__ul li:last-child {
  padding-bottom: 4rem;
  border-bottom: 1px dashed var(--color-line);
}
.link-wrap__title {
  font-size: 1.4rem;
  font-weight: 400 !important;
  color: #000;
}
.link-wrap__ul {
  list-style: none;
}
.link-wrap__ul li:not(:first-child) {
  border-top: 1px dashed var(--color-line);
  padding-top: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 800px) {
  .link-wrap__ul li:not(:first-child) {
    padding-top: 4rem;
    margin-top: 4rem;
  }
}
.link-wrap .text__link01 {
  margin-top: 0;
}
.link-wrap .text__link01 a::before {
  transform: none;
  top: 0;
}
.link-wrap .text__link01 small {
  display: block;
  color: #7F7F7F;
  text-decoration: underline;
  font-size: 80%;
}
.link-wrap .text__link01--window a span::after {
  content: "";
  display: inline-block;
  background: url("../images/icon-link.webp") left top no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  margin-left: 1rem;
}
.link-wrap__desc {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .link-wrap__desc {
    padding-left: 4rem;
  }
}

@media screen and (max-width: 799px) {
  .number {
    max-width: 320px;
    margin: 0 auto;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 800px) {
  .number {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 800px) {
  .number__head {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 0 2rem;
    position: relative;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.number__item {
  display: block;
  padding: 0 2rem 3.5rem;
  border-radius: 40px;
  border: 1px solid var(--color-font);
  position: relative;
  margin-top: 5rem;
}
.number__item--01 .number__illust {
  width: 200px;
}
@media screen and (min-width: 800px) {
  .number__item--01 .number__illust {
    width: 300px;
  }
}
.number__item--02 .number__illust {
  width: 77px;
}
@media screen and (min-width: 800px) {
  .number__item--02 .number__illust {
    width: 95px;
  }
}
@media screen and (min-width: 1000px) {
  .number__item--02 {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.number__item--03 .number__illust {
  width: 47px;
}
@media screen and (min-width: 800px) {
  .number__item--03 .number__illust {
    width: 66px;
  }
}
@media screen and (min-width: 1000px) {
  .number__item--03 {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.number__item--04 .number__illust {
  width: 54px;
}
@media screen and (min-width: 800px) {
  .number__item--04 .number__illust {
    width: 71px;
  }
}
@media screen and (min-width: 1000px) {
  .number__item--04 {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1160px) {
  .number__item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.number__illust {
  display: block;
  margin: 0 auto;
  margin-top: -4rem;
}
@media screen and (min-width: 800px) {
  .number__illust {
    order: 2;
    margin: 0;
  }
}
.number__title {
  font-size: 16px !important;
  font-weight: 400 !important;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 800px) {
  .number__title {
    order: 1;
  }
}
.number h4 {
  font-size: 14px !important;
  font-weight: 400 !important;
}
@media screen and (min-width: 800px) {
  .number h4 {
    font-size: 16px !important;
  }
}
.number__arrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (min-width: 800px) {
  .number__arrow {
    width: 420px;
    margin: 0 auto;
  }
}
.number__contents:first-child h4 {
  position: relative;
}
.number__contents:first-child h4::before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 1px;
  background: #333;
  position: absolute;
  top: 13px;
  right: -10px;
}
@media screen and (min-width: 800px) {
  .number__contents:first-child h4::before {
    width: calc(100% - 100px);
  }
}
.number__contents:first-child h4::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  position: absolute;
  top: 10px;
  right: -10px;
  transform: rotate(-45deg);
}
.number__simple h4 {
  text-align: center;
}
@media screen and (max-width: 799px) {
  .number__simple {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
  }
}
@media screen and (min-width: 800px) {
  .number__simple .number-wrap {
    text-align: center;
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 800px) {
  .number__simple {
    padding: 0 2vw;
    border-left: 1px solid #333;
  }
}
@media screen and (min-width: 1000px) {
  .number__simple {
    padding: 0 7.8vw;
  }
}
@media screen and (min-width: 800px) {
  .number__inner {
    display: flex;
    justify-content: center;
  }
}

.number-wrap {
  line-height: 1;
  margin-top: 1rem;
  position: relative;
  font-family: var(--font-family-num);
}

.count-number {
  font-size: 64px;
  font-weight: 200 !important;
  letter-spacing: -2px;
}
@media screen and (min-width: 800px) {
  .count-number {
    font-size: 94px;
  }
}
.count-number .mini {
  font-size: 40px;
  font-weight: 200 !important;
  letter-spacing: 0px;
}
@media screen and (min-width: 800px) {
  .count-number .mini {
    font-size: 64px;
  }
}

.tani {
  font-size: 40px;
  font-weight: 200 !important;
  position: absolute;
  bottom: 4px;
  left: 100px;
}
@media screen and (min-width: 800px) {
  .tani {
    font-size: 64px;
    bottom: 2px;
    left: 155px;
  }
}
.tani--ad01 {
  left: 66px;
}
@media screen and (min-width: 800px) {
  .tani--ad01 {
    left: 145px;
  }
}
.tani--ad02 {
  left: 100px;
}
@media screen and (min-width: 800px) {
  .tani--ad02 {
    left: 145px;
  }
}

@media screen and (max-width: 799px) {
  .right-ad01 {
    margin-right: -30px;
    width: calc(100% + 30px);
  }
}

.modalBtn {
  cursor: pointer;
}

.modal {
  visibility: hidden;
  overflow-y: scroll;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 27px;
  transition: opacity 0.3s, visibility 0s 0.3s;
  background: rgba(144, 166, 174, 0.3);
}
@media screen and (min-width: 800px) {
  .modal {
    padding: 0 40px;
  }
}

.modal.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s 0s;
}

.modal_container {
  display: flex;
  min-height: 100%;
  justify-content: center;
  align-items: center;
}

.modal_container _:-ms-lang(x)::-ms-backdrop, .modal_container {
  min-height: 100vh;
}

.modal_container::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}

.modal_inner {
  margin-block: 7rem;
  margin-inline: auto;
  width: 100%;
  max-width: 887px;
}

.modal_content {
  position: relative;
  display: none;
  width: 100%;
}

.is-active .modal_content {
  display: block;
}

.wrapper.is-locked {
  position: fixed;
  width: 100%;
}

.modalClose {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .modalClose {
    top: 2rem;
    right: 2rem;
  }
}
.modalClose::before, .modalClose::after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #7F7F7F;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 800px) {
  .modalClose::before, .modalClose::after {
    width: 50px;
  }
}
.modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.single-item-fix .slick-arrow {
  position: absolute;
  top: 83px;
  width: 50px;
  height: 50px;
  background: url(../images/arrow01.webp) 50% 50%/30px 30px no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .single-item-fix .slick-arrow {
    background-size: contain;
    top: 114px;
  }
}
.single-item-fix .slick-prev {
  transform: rotateY(180deg);
  left: 17px;
}
@media screen and (min-width: 800px) {
  .single-item-fix .slick-prev {
    left: min(19rem, 20vw);
  }
}
.single-item-fix .slick-next {
  right: 17px;
}
@media screen and (min-width: 800px) {
  .single-item-fix .slick-next {
    right: min(19rem, 20vw);
  }
}
.single-item-fix .slick-list {
  margin: 0 -15px;
}
.single-item-fix .slick-slide {
  margin: 0 15px;
}

.modal-slider-item {
  background: #fff;
  border: 1px solid #7F7F7F;
  padding: 3.5rem 2.7rem;
  border-radius: 40px;
}
@media screen and (min-width: 800px) {
  .modal-slider-item {
    padding-inline: min(19rem, 20vw);
    padding-block: 4rem 6.5rem;
  }
}
.modal-slider-item__img {
  width: auto;
  height: 120px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .modal-slider-item__img {
    height: 155px;
  }
}
.modal-slider-item__img img {
  height: 100%;
  width: auto;
  display: inline-block;
}
.modal-slider-item__title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
}
.modal-slider-item__desc {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 3.7rem;
  padding-block: 2.7rem;
  color: #000;
}
.modal-slider-item__copy {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 29px;
}
@media screen and (min-width: 800px) {
  .modal-slider-item__copy {
    font-size: 14px;
  }
}
.modal-slider-item__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-slider-item__list li {
  padding-left: 2rem;
  position: relative;
  font-size: 16px;
}
@media screen and (min-width: 800px) {
  .modal-slider-item__list li {
    font-size: 18px;
  }
}
.modal-slider-item__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.modal-slider-item__list span {
  display: block;
  font-size: 13px;
  font-weight: 300;
}
@media screen and (min-width: 800px) {
  .modal-slider-item__list span {
    font-size: 14px;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
@media screen and (min-width: 800px) {
  .gallery-columns-2 .gallery-item {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .gallery-columns-3 .gallery-item {
    width: 33.3333333333%;
  }
}
.gallery-item {
  padding: 8px;
}
.gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.gallery-caption {
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--color-font);
  line-height: 1.7;
  text-align: left;
  padding: 5px 0;
}
@media screen and (min-width: 800px) {
  .gallery-caption {
    font-size: 1.7rem;
  }
}

.pagination {
  margin-top: 10rem;
}
@media screen and (min-width: 800px) {
  .pagination {
    margin-top: 8rem;
  }
}
.pagination__list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.page-numbers {
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1;
  font-size: 16px;
  font-weight: 300;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  color: var(--color-font);
}
.page-numbers--dots {
  border: none;
}
.page-numbers--current {
  background-color: #E9E9E9;
}

/*  ページ送り  */
.page-nav {
  display: block;
  background: #F7F7F7;
}
.page-nav__inner {
  padding: 0 3rem;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .page-nav__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5rem;
    max-width: 1360px;
  }
}
@media screen and (max-width: 799px) {
  .page-nav__inner {
    max-width: 380px;
  }
}
.page-nav__item {
  padding: 4rem 0;
}
@media screen and (min-width: 800px) {
  .page-nav__item {
    padding: 0;
  }
}
.page-nav__item:nth-child(1) .pager-item__thmb {
  border-top-right-radius: 20px;
}
@media screen and (min-width: 800px) {
  .page-nav__item:nth-child(1) {
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-nav__item:nth-child(1) {
    padding-right: 10rem;
  }
}
.page-nav__item:nth-child(2) .pager-item__thmb {
  border-bottom-left-radius: 20px;
}
@media screen and (min-width: 800px) {
  .page-nav__item:nth-child(2) {
    padding-left: 4rem;
    border-left: 1px solid #000;
  }
}
@media screen and (min-width: 1400px) {
  .page-nav__item:nth-child(2) {
    padding-left: 10rem;
  }
}
.page-nav--news {
  background: none;
  padding-top: 4rem;
  margin-top: 8rem;
  border-top: 1px solid var(--color-line);
}
.page-nav--news .page-nav__inner {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media screen and (min-width: 800px) {
  .page-nav--news .page-nav__inner {
    grid-template-columns: auto 1fr 1fr;
    gap: 2.6rem;
  }
}
.page-nav--news .page-nav__item {
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 17px;
}
@media screen and (min-width: 1000px) {
  .page-nav--news .page-nav__item {
    display: block;
  }
}
.page-nav--news .page-nav__item .text__link01 {
  margin-top: 0;
}
.page-nav--news .page-nav__item--back {
  max-width: 175px;
}
.page-nav--news .page-nav__item .date {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 300;
  vertical-align: middle;
}
@media screen and (min-width: 800px) {
  .page-nav--news .page-nav__item .date {
    font-size: 16px;
  }
}
.page-nav--news .page-nav__item .cate {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 800px) {
  .page-nav--news .page-nav__item .cate {
    font-size: 14px;
  }
}
.page-nav--news .page-nav__item .pager-item__title {
  font-weight: normal !important;
  text-decoration: underline;
}
@media screen and (max-width: 799px) {
  .page-nav--myphilosophy .page-nav__item:nth-child(2)::before {
    content: "";
    display: block;
    width: calc(100vw - 6rem);
    height: 1px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pager-item {
  position: relative;
}
@media screen and (min-width: 1400px) {
  .pager-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
    padding-block: 0 2rem;
  }
}
.pager-item__link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pager-item .text__link01 a {
  pointer-events: none;
}
@media screen and (min-width: 1400px) {
  .pager-item .text__link01 {
    grid-column: 1/3;
    grid-row: 1/2;
    margin-bottom: 1.5rem;
  }
}
.pager-item__thmb {
  width: 100%;
  height: 0;
  padding-bottom: 53.918%;
  position: relative;
  overflow: hidden;
  margin-top: 2.8rem;
}
@media screen and (min-width: 1400px) {
  .pager-item__thmb {
    margin: 0;
    grid-column: 1/2;
    grid-row: 2/4;
  }
}
.pager-item__thmb img {
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1400px) {
  .pager-item__title {
    margin: 0 !important;
  }
}
.pager-item__copy {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-decoration: underline;
  transition: 0.2s ease-out;
}
@media screen and (min-width: 1400px) {
  .pager-item__copy {
    margin: 0 !important;
  }
}
@media screen and (min-width: 1400px) {
  .pager-item__copy {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .pager-item--news {
    transition: 0.2s ease-out;
  }
  .pager-item--news:hover {
    background: #EDF2FA;
  }
  .pager-item--news:hover .text__link01 a {
    color: var(--color-link);
  }
  .pager-item--news:hover .pager-item__title {
    color: var(--color-link);
  }
}
@media screen and (min-width: 1000px) {
  .pager-item--myphilosophy {
    transition: 0.2s ease-out;
  }
  .pager-item--myphilosophy:hover .text__link01 a {
    color: var(--color-link);
  }
  .pager-item--myphilosophy:hover .pager-item__copy {
    color: var(--color-link);
  }
  .pager-item--myphilosophy:hover .pager-item__thmb img {
    opacity: 0.7;
  }
}

/*********************/
/*  ページトップボタン　 */
/*********************/
.page-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-white);
  text-align: center;
  line-height: 1;
  opacity: 0;
  z-index: 500;
  transition: 0.4s ease-out;
}
@media screen and (max-width: 799px) {
  .page-top {
    width: 40px;
    height: 40px;
    bottom: 30px;
  }
}
.page-top--fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/**************************/
/*  書き方パーツ調整用クラス  */
/**************************/
/*表示・非表示 切り替え用 */
@media screen and (min-width: 800px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .tab-only {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .tab-only {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .pc-only {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 800px) and (max-width: 999px) {
  .tab-none {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .pc-none {
    display: none;
  }
}

/* margin-top スマホ */
@media screen and (max-width: 799px) {
  .sp-mt0 {
    margin-top: 0;
  }
  .sp-mt10 {
    margin-top: 1rem;
  }
  .sp-mt20 {
    margin-top: 2rem;
  }
  .sp-mt30 {
    margin-top: 3rem;
  }
  .sp-mt40 {
    margin-top: 4rem;
  }
  .sp-mt50 {
    margin-top: 5rem;
  }
  .sp-mt60 {
    margin-top: 6rem;
  }
  .sp-mt70 {
    margin-top: 7rem;
  }
  .sp-mt80 {
    margin-top: 8rem;
  }
  .sp-mt90 {
    margin-top: 9rem;
  }
  .sp-mt100 {
    margin-top: 10rem;
  }
  .sp-mtm10 {
    margin-top: -1rem;
  }
  .sp-mtm20 {
    margin-top: -2rem;
  }
  .sp-mtm30 {
    margin-top: -3rem;
  }
  .sp-mtm40 {
    margin-top: -4rem;
  }
  .sp-mtm50 {
    margin-top: -5rem;
  }
  .sp-mtm60 {
    margin-top: -6rem;
  }
  .sp-mtm70 {
    margin-top: -7rem;
  }
  .sp-mtm80 {
    margin-top: -8rem;
  }
  .sp-mtm90 {
    margin-top: -9rem;
  }
  .sp-mtm100 {
    margin-top: -10rem;
  }
}
/* margin-top タブレット */
@media screen and (min-width: 800px) {
  .tab-mt0 {
    margin-top: 0;
  }
  .tab-mt10 {
    margin-top: 1rem;
  }
  .tab-mt20 {
    margin-top: 2rem;
  }
  .tab-mt30 {
    margin-top: 3rem;
  }
  .tab-mt40 {
    margin-top: 4rem;
  }
  .tab-mt50 {
    margin-top: 5rem;
  }
  .tab-mt60 {
    margin-top: 6rem;
  }
  .tab-mt70 {
    margin-top: 7rem;
  }
  .tab-mt80 {
    margin-top: 8rem;
  }
  .tab-mt90 {
    margin-top: 9rem;
  }
  .tab-mt100 {
    margin-top: 10rem;
  }
  .tab-mt110 {
    margin-top: 11rem;
  }
  .tab-mt120 {
    margin-top: 12rem;
  }
  .tab-mt130 {
    margin-top: 13rem;
  }
  .tab-mt140 {
    margin-top: 14rem;
  }
  .tab-mt150 {
    margin-top: 15rem;
  }
  .tab-mt160 {
    margin-top: 16rem;
  }
  .tab-mt170 {
    margin-top: 17rem;
  }
  .tab-mt180 {
    margin-top: 18rem;
  }
  .tab-mt190 {
    margin-top: 19rem;
  }
  .tab-mt200 {
    margin-top: 20rem;
  }
  .tab-mtm10 {
    margin-top: -1rem;
  }
  .tab-mtm20 {
    margin-top: -2rem;
  }
  .tab-mtm30 {
    margin-top: -3rem;
  }
  .tab-mtm40 {
    margin-top: -4rem;
  }
  .tab-mtm50 {
    margin-top: -5rem;
  }
  .tab-mtm60 {
    margin-top: -6rem;
  }
  .tab-mtm70 {
    margin-top: -7rem;
  }
  .tab-mtm80 {
    margin-top: -8rem;
  }
  .tab-mtm90 {
    margin-top: -9rem;
  }
  .tab-mtm100 {
    margin-top: -10rem;
  }
  .tab-mtm110 {
    margin-top: -11rem;
  }
  .tab-mtm120 {
    margin-top: -12rem;
  }
  .tab-mtm130 {
    margin-top: -13rem;
  }
  .tab-mtm140 {
    margin-top: -14rem;
  }
  .tab-mtm150 {
    margin-top: -15rem;
  }
  .tab-mtm160 {
    margin-top: -16rem;
  }
  .tab-mtm170 {
    margin-top: -17rem;
  }
  .tab-mtm180 {
    margin-top: -18rem;
  }
  .tab-mtm190 {
    margin-top: -19rem;
  }
  .tab-mtm200 {
    margin-top: -20rem;
  }
}
/* margin-top パソコン */
@media screen and (min-width: 1000px) {
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mt10 {
    margin-top: 1rem;
  }
  .pc-mt20 {
    margin-top: 2rem;
  }
  .pc-mt30 {
    margin-top: 3rem;
  }
  .pc-mt40 {
    margin-top: 4rem;
  }
  .pc-mt50 {
    margin-top: 5rem;
  }
  .pc-mt60 {
    margin-top: 6rem;
  }
  .pc-mt70 {
    margin-top: 7rem;
  }
  .pc-mt80 {
    margin-top: 8rem;
  }
  .pc-mt90 {
    margin-top: 9rem;
  }
  .pc-mt100 {
    margin-top: 10rem;
  }
}
/* margin-bottom スマホ */
@media screen and (max-width: 799px) {
  .sp-mb0 {
    margin-bottom: 0;
  }
  .sp-mb10 {
    margin-bottom: 1rem;
  }
  .sp-mb20 {
    margin-bottom: 2rem;
  }
  .sp-mb30 {
    margin-bottom: 3rem;
  }
  .sp-mb40 {
    margin-bottom: 4rem;
  }
  .sp-mb50 {
    margin-bottom: 5rem;
  }
  .sp-mb60 {
    margin-bottom: 6rem;
  }
  .sp-mb70 {
    margin-bottom: 7rem;
  }
  .sp-mb80 {
    margin-bottom: 8rem;
  }
  .sp-mb90 {
    margin-bottom: 9rem;
  }
  .sp-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom タブレット */
@media screen and (min-width: 800px) {
  .tab-mb0 {
    margin-bottom: 0;
  }
  .tab-mb10 {
    margin-bottom: 1rem;
  }
  .tab-mb20 {
    margin-bottom: 2rem;
  }
  .tab-mb30 {
    margin-bottom: 3rem;
  }
  .tab-mb40 {
    margin-bottom: 4rem;
  }
  .tab-mb50 {
    margin-bottom: 5rem;
  }
  .tab-mb60 {
    margin-bottom: 6rem;
  }
  .tab-mb70 {
    margin-bottom: 7rem;
  }
  .tab-mb80 {
    margin-bottom: 8rem;
  }
  .tab-mb90 {
    margin-bottom: 9rem;
  }
  .tab-mb100 {
    margin-bottom: 10rem;
  }
}
/* margin-bottom パソコン */
@media screen and (min-width: 1000px) {
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mb10 {
    margin-bottom: 1rem;
  }
  .pc-mb20 {
    margin-bottom: 2rem;
  }
  .pc-mb30 {
    margin-bottom: 3rem;
  }
  .pc-mb40 {
    margin-bottom: 4rem;
  }
  .pc-mb50 {
    margin-bottom: 5rem;
  }
  .pc-mb60 {
    margin-bottom: 6rem;
  }
  .pc-mb70 {
    margin-bottom: 7rem;
  }
  .pc-mb80 {
    margin-bottom: 8rem;
  }
  .pc-mb90 {
    margin-bottom: 9rem;
  }
  .pc-mb100 {
    margin-bottom: 10rem;
  }
}
/* letter-spacing */
.ls10 {
  letter-spacing: 0.01em;
}

.ls20 {
  letter-spacing: 0.02em;
}

.ls30 {
  letter-spacing: 0.03em;
}

.ls40 {
  letter-spacing: 0.04em;
}

.ls50 {
  letter-spacing: 0.05em;
}

.ls60 {
  letter-spacing: 0.06em;
}

.ls70 {
  letter-spacing: 0.07em;
}

.ls80 {
  letter-spacing: 0.08em;
}

.ls90 {
  letter-spacing: 0.09em;
}

.ls100 {
  letter-spacing: 0.1em;
}

.ls110 {
  letter-spacing: 0.11em;
}

.ls120 {
  letter-spacing: 0.12em;
}

.ls130 {
  letter-spacing: 0.13em;
}

.ls140 {
  letter-spacing: 0.14em;
}

.ls150 {
  letter-spacing: 0.15em;
}

.ls160 {
  letter-spacing: 0.16em;
}

.ls170 {
  letter-spacing: 0.17em;
}

.ls180 {
  letter-spacing: 0.18em;
}

.ls190 {
  letter-spacing: 0.19em;
}

.ls200 {
  letter-spacing: 0.2em;
}

/* line-height */
.lh10 {
  line-height: 1;
}

.lh11 {
  line-height: 1.1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}

.lh18 {
  line-height: 1.8;
}

.lh19 {
  line-height: 1.9;
}

.lh20 {
  line-height: 2;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-zindex {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 799px) {
  .img-right-fixed {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

@media screen and (max-width: 799px) {
  .img-left-fixed {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}

@media screen and (max-width: 799px) {
  .img-sp-min {
    width: 60%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.ob-fit {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}

.flex-item {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (min-width: 800px) {
  .flex-item {
    gap: 5rem;
  }
}

:focus:not(:focus-visible) {
  outline: 0;
}

.alignleft,
.alignright,
.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto;
}

@media screen and (min-width: 800px) {
  .alignleft {
    float: left;
    margin: 0 2em 0 0;
  }
}

@media screen and (min-width: 800px) {
  .alignright {
    float: right;
    margin: 0 0 0 2em;
  }
}

img.aligncenter {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 800px) {
  img.aligncenter {
    margin: 2em auto;
  }
}

.wp-block-image {
  margin: 2rem 0;
}
@media screen and (min-width: 800px) {
  .wp-block-image {
    margin: 3rem 0;
  }
}
.wp-block-image img {
  width: auto;
}

.gmap-wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin-top: 2rem;
  overflow: hidden;
}
.gmap-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.lazy {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s 0.3s ease-out;
}
.lazy--inview {
  transform: translateY(0);
  opacity: 1;
}