@charset "UTF-8";
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;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

.bold {
  font-weight: bold;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

select {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

html {
  overscroll-behavior: none;
  background: var(--white);
}

.material-icons-outlined {
  font-family: "Material Icons" !important;
  vertical-align: middle;
}

body {
  overflow-x: hidden;
  opacity: 0;
  animation: Fadein 0.8s ease-in 0.4s forwards;
}

:root {
  --white: #FDFDFD;
  --black: #222222;
  --red: #e50012;
  --red_bg: #e4274d;
  --pink: #ff9193;
  --yellow: #ffd202;
  --yellow_light: #fff6a8;
  --blue: #00c3cc;
  --green: #00c4b4;
  --gray: #e6e6e6;
  --gold: #D5C185;
  --brown: #682C00;
  --yellow_grad: linear-gradient(to top, #ffd202, #ffea67);
  --green_grad: linear-gradient(to top, #00c4b4, #4bd5ca);
}

div,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
aside,
figure {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #222;
}

@media screen and (min-width: 1023px) {
  a:hover {
    opacity: 0.8;
    transition: 0.4s;
  }
}
.relative {
  position: relative;
}

body {
  color: #222222;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
}

.eng {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.eng_2 {
  font-family: "Caprasimo", serif;
}

button,
input,
select,
textarea,
pre,
th,
td,
li,
dt,
dd {
  font-family: inherit;
}

img {
  width: 100%;
}

.sa {
  opacity: 0;
}
.sa.fadein.show {
  animation: Fadein 0.6s ease-out 0.2s forwards;
}
.sa.slidein.show {
  animation: FadeinSlide 0.6s ease-out 0.2s forwards;
}

@keyframes Fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeinSlide {
  0% {
    opacity: 0;
    transform: translate(0, 24px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0px);
  }
}
@keyframes FadeinScale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.pad32 {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 1023px) {
  .pad32 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.small_width {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1023px) {
  .small_width {
    max-width: 680px;
  }
}
.small_width.pad32 {
  max-width: 512px;
}
@media screen and (min-width: 1023px) {
  .small_width.pad32 {
    max-width: 712px;
  }
}

.basic_width {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1023px) {
  .basic_width {
    max-width: 864px;
  }
}
.basic_width.pad32 {
  max-width: 512px;
}
@media screen and (min-width: 1023px) {
  .basic_width.pad32 {
    max-width: 896px;
  }
}

header {
  height: 64px;
  background-color: var(--white);
  width: 100vw;
  position: fixed;
  top: 0;
  padding: 12px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.open {
  background-color: var(--red_bg);
}
header.open h1.header_logo {
  opacity: 0;
  pointer-events: none;
}
header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .header_inner h1.header_logo {
  width: 157px;
}
header .header_inner h1.header_logo a {
  display: block;
  width: 100%;
}
header .header_inner h1.header_logo a:hover {
  opacity: 0.8;
  transition: 0.8s;
}
header .header_inner h1.header_logo a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header_inner nav.header_nav {
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  header .header_inner nav.header_nav {
    opacity: 0;
    pointer-events: none;
    /*spハンバーガーメニュー*/
    position: fixed;
    transition: 0;
    top: 64px;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9;
    padding: 0 32px 80px 32px;
    overflow: scroll;
  }
  header .header_inner nav.header_nav h1.nav_logo {
    max-width: 192px;
    margin: 0 auto 48px auto;
  }
  header .header_inner nav.header_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  header .header_inner nav.header_nav ul li {
    opacity: 0;
    text-align: center;
    position: relative;
    height: 40px;
    margin: 0 auto;
    width: 100%;
  }
  header .header_inner nav.header_nav ul li a {
    height: 40px;
    display: block;
    color: var(--white);
  }
  header .header_inner nav.header_nav ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  header .header_inner nav.header_nav ul li a img {
    display: block;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .header_inner nav.header_nav .nav_store {
    display: block;
    margin: 64px auto;
    opacity: 0;
    max-width: 400px;
  }
  header .header_inner nav.header_nav .nav_store a {
    display: block;
  }
  header .header_inner nav.header_nav.open {
    display: block;
    opacity: 1;
    background-color: var(--red_bg);
    pointer-events: initial;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(1) {
    animation: Fadein 0.4s ease-in 0.2s forwards;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(2) {
    animation: Fadein 0.4s ease-in 0.3s forwards;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(3) {
    animation: Fadein 0.4s ease-in 0.4s forwards;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(4) {
    animation: Fadein 0.4s ease-in 0.5s forwards;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(5) {
    animation: Fadein 0.4s ease-in 0.6s forwards;
  }
  header .header_inner nav.header_nav.open ul li:nth-child(6) {
    animation: Fadein 0.4s ease-in 0.8s forwards;
  }
  header .header_inner nav.header_nav.open .nav_store {
    animation: Fadein 0.6s ease-in 0.8s forwards;
  }
}
header .header_inner .humburger {
  margin-left: auto;
  display: block;
  width: 32px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
header .header_inner .humburger::before,
header .header_inner .humburger span, header .header_inner .humburger::after {
  transition: 0.4s;
  content: "";
  height: 2px;
  display: block;
  background-color: var(--black);
  position: absolute;
  width: 100%;
}
header .header_inner .humburger::before {
  top: 0;
}
header .header_inner .humburger span {
  height: 2px;
  display: block;
  background-color: var(--black);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
header .header_inner .humburger::after {
  bottom: 0;
}
header .header_inner .humburger.open::before {
  transform: rotate(30deg);
  top: 9px;
}
header .header_inner .humburger.open span {
  transform: rotate(30deg);
}
header .header_inner .humburger.open::after {
  transform: rotate(-30deg);
  bottom: 9px;
}
@media screen and (min-width: 1023px) {
  header {
    padding: 16px 64px;
    height: 80px;
  }
  header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header_inner h1.header_logo {
    width: 200px;
  }
  header .header_inner nav.header_nav {
    display: block;
    margin-left: auto;
  }
  header .header_inner nav.header_nav h1.nav_logo {
    display: none;
  }
  header .header_inner nav.header_nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .header_inner nav.header_nav ul li {
    margin-left: 40px;
  }
  header .header_inner nav.header_nav ul li.nav_menu_top {
    display: none;
  }
  header .header_inner nav.header_nav ul li a {
    font-size: 1rem;
  }
  header .header_inner nav.header_nav ul li a img {
    display: none;
  }
  header .header_inner nav.header_nav .nav_store {
    display: none;
  }
  header .header_inner .humburger {
    display: none;
  }
}

body.home header {
  background-color: rgba(255, 255, 255, 0);
  transition: 0.6s;
}
body.home header h1.header_logo,
body.home header .header_nav {
  opacity: 0;
  transition: 0.6s;
  pointer-events: none;
}
body.home header.bgwhite {
  background-color: var(--white);
}
body.home header.bgwhite h1 {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (min-width: 1023px) {
  body.home header.bgwhite .header_nav {
    opacity: 1;
    pointer-events: initial;
  }
}
@media screen and (max-width: 1023px) {
  body.home header.open h1.header_logo {
    opacity: 0;
    pointer-events: none;
  }
  body.home header.open {
    background-color: var(--red_bg);
  }
  body.home header.open .header_nav {
    opacity: 1;
    pointer-events: initial;
  }
}

a.btn {
  display: block;
  font-size: 0.938rem;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
}
a.btn.bgimg {
  height: 44px;
  max-width: 224px;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
a.btn.bgimg span {
  position: relative;
  z-index: 1;
}
a.btn.bgimg .icon {
  display: block;
  width: 16px;
  height: 12px;
}
a.btn.bgimg .icon img {
  display: block;
}
a.btn.bgimg .bg {
  height: 44px;
  max-width: 224px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 1;
}
a.btn.bgimg.white {
  color: var(--black);
}
a.btn.bgimg.white .bg svg {
  fill: var(--white);
}
a.btn.bgimg.white_red {
  color: var(--red);
}
a.btn.bgimg.white_red .bg svg {
  fill: var(--white);
}
a.btn.bgimg.red {
  color: var(--white);
}
a.btn.bgimg.red .bg svg {
  fill: var(--red);
}
a.btn.bgimg.green {
  color: var(--white);
}
a.btn.bgimg.green .bg svg {
  fill: var(--green);
}
a.btn.bgimg.yellow {
  color: var(--black);
}
a.btn.bgimg.yellow .bg svg {
  fill: var(--yellow);
}
@media screen and (min-width: 1023px) {
  a.btn:hover {
    opacity: 0.6;
    transition: 0.6s;
  }
}

h2 img.heading_logo {
  height: 52px;
  width: 100%;
}
h2 span.jp {
  font-size: 0.938rem;
  text-align: center;
  display: block;
  margin: 12px auto 0 auto;
}

section {
  overflow-x: hidden;
  overflow-y: visible;
}

.topmain {
  position: relative;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
}
.topmain::after {
  opacity: 0.1;
  z-index: -1;
  display: block;
  content: "";
  background-image: radial-gradient(#FDFDFD 25%, transparent 25%), radial-gradient(#FDFDFD 25%, transparent 25%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  position: fixed;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200dvh;
}
.topmain div.mainmov {
  position: fixed;
  margin: 0;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  width: 100vw;
  transform: translateZ(0);
}
.topmain div.mainmov video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100dvh;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  display: none;
}
.topmain div.mainmov video.topvideo_sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .topmain div.mainmov video.topvideo_sp {
    display: block !important;
  }
}
@media screen and (min-width: 1023px) {
  .topmain div.mainmov video.topvideo_pc {
    display: block !important;
  }
}
.topmain .mainlogo .mainlogo_img {
  position: absolute;
  z-index: 2;
}
.topmain .mainlogo .mainlogo_img.logo_jp {
  top: 16px;
  left: 16px;
  width: 80px;
  opacity: 0;
  animation: Fadein 0.6s ease-in 1.2s forwards;
}
.topmain .mainlogo .mainlogo_img.logo_eng {
  right: 16px;
  bottom: 16px;
  width: 56px;
  opacity: 0;
  animation: Fadein 0.6s ease-in 1.6s forwards;
}

section#top_store {
  background-color: var(--red_bg);
  padding-top: 56px;
  padding-bottom: 56px;
}
section#top_store .store_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
section#top_store .store_inner .img,
section#top_store .store_inner .title {
  width: 100%;
}
section#top_store .store_inner .img img {
  width: 100%;
}
section#top_store .store_inner .title h2 {
  margin-bottom: 32px;
  max-width: 240px;
}
section#top_store .store_inner .title a.btn {
  margin: 0 auto;
}
@media screen and (min-width: 1023px) {
  section#top_store {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  section#top_store .store_inner {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    max-width: 688px;
    margin: 0 auto;
  }
  section#top_store .store_inner .img,
  section#top_store .store_inner .title {
    flex: 1;
  }
  section#top_store .store_inner .title h2 {
    margin-bottom: 32px;
  }
  section#top_store .store_inner .title a.btn {
    margin: 0;
  }
}

section#top_news {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--white);
}
section#top_news .news_list .news_item h3.title {
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
section#top_news a.btn {
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
}

section#top_about {
  background-image: var(--yellow_grad);
  overflow: visible;
}
section#top_about .imgarea {
  pointer-events: none;
}
section#top_about .imgarea .imgarea_inner {
  aspect-ratio: 10/9;
  position: relative;
}
@media screen and (min-width: 1023px) {
  section#top_about .imgarea .imgarea_inner {
    aspect-ratio: 29/15;
  }
}
section#top_about .imgarea .imgarea_inner img {
  display: block;
  width: 100%;
}
section#top_about .imgarea .imgarea_inner img.aboutimg_0 {
  z-index: 2;
  width: 56%;
  max-width: 424px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
}
section#top_about .imgarea .imgarea_inner .aboutimg_1 {
  z-index: 1;
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  margin: auto;
}
section#top_about .imgarea .imgarea_inner .aboutimg_1.aboutimg_1_1 {
  left: -5%;
  right: -5%;
  width: 110%;
}
@media screen and (min-width: 1023px) {
  section#top_about .imgarea .imgarea_inner .aboutimg_1.aboutimg_1_1 {
    left: 0%;
    right: 0%;
    width: 100%;
  }
}
section#top_about .imgarea .imgarea_inner .aboutimg_1.aboutimg_1_1.show {
  animation: FadeinSlide 0.4s ease-in 0.8s forwards;
}
section#top_about .imgarea .imgarea_inner .aboutimg_1.aboutimg_1_2.show {
  animation: FadeinSlide 0.4s ease-in 1.2s forwards;
}
section#top_about .lead_box {
  padding: 0 16px;
}
@media screen and (min-width: 1023px) {
  section#top_about .lead_box {
    padding: 0;
  }
}
section#top_about .lead_box p {
  font-size: 0.938rem;
  line-height: 1.9;
  margin-bottom: 1.7em;
}
section#top_about .lead_box p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1023px) {
  section#top_about .lead_box p {
    font-size: 1.125rem;
  }
}
section#top_about a.btn {
  margin-top: 56px;
}
section#top_about .top_aboutimg_1_3 {
  position: relative;
  transform: translate(0, -16px);
  pointer-events: none;
}

section#top_teams {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: var(--white);
}
@media screen and (min-width: 1023px) {
  section#top_teams {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
section#top_teams .teams_box {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1023px) {
  section#top_teams .teams_box {
    margin-top: 48px;
  }
}
section#top_teams .teams_box a {
  display: block;
  width: 33.33333%;
  aspect-ratio: 19/60;
  overflow: hidden;
}
section#top_teams .teams_box a img {
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: 0.8s;
}
@media screen and (min-width: 1023px) {
  section#top_teams .teams_box a {
    aspect-ratio: 4/5;
  }
}
section#top_teams .teams_box.show {
  opacity: 1;
}
section#top_teams .teams_box.show a:nth-child(1) img {
  animation: FadeinScale 0.6s ease-out 0.4s forwards;
}
section#top_teams .teams_box.show a:nth-child(2) img {
  animation: FadeinScale 0.6s ease-out 0.6s forwards;
}
section#top_teams .teams_box.show a:nth-child(3) img {
  animation: FadeinScale 0.6s ease-out 0.8s forwards;
}

section#top_csr {
  background-color: var(--white);
}
section#top_csr .csr_inner {
  -webkit-clip-path: polygon(0 120px, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 120px, 100% 0%, 100% 100%, 0% 100%);
  padding-top: 200px;
  padding-bottom: 240px;
  background-image: url("../img/top_06.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1023px) {
  section#top_csr .csr_inner {
    /*SPだとfixedはバグるのでPCのみにする*/
    background-attachment: fixed;
  }
}
section#top_csr .csr_inner h2 {
  margin-bottom: 80px;
}
section#top_csr .csr_inner h2 span.jp {
  color: var(--red);
}

section#top_gallery {
  background-color: var(--white);
  margin-top: -120px;
  -webkit-clip-path: polygon(0 120px, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 120px, 100% 0%, 100% 100%, 0% 100%);
  background-image: var(--green_grad);
  padding-top: 200px;
  padding-bottom: 80px;
}

.wave {
  pointer-events: none;
  overflow: hidden;
}
.wave.wave_1 {
  margin-top: -2px;
}
.wave.wave_2 {
  margin-bottom: -2px;
}
.wave svg {
  display: block;
  width: 200%;
}
@media screen and (min-width: 1023px) {
  .wave svg {
    width: 100%;
  }
}
.wave.white svg {
  fill: var(--white);
}
.wave.white.wave_1 {
  background: linear-gradient(to bottom, var(--white), var(--white) 4px, transparent 4px, transparent 100%);
}
.wave.white.wave_2 {
  background: linear-gradient(to top, var(--white), var(--white) 4px, transparent 4px, transparent 100%);
}
.wave.pink svg {
  fill: var(--pink);
}
.wave.pink.wave_1 {
  background: linear-gradient(to bottom, var(--pink), var(--pink) 4px, transparent 4px, transparent 100%);
}
.wave.pink.wave_2 {
  background: linear-top(to bottom, var(--pink), var(--pink) 4px, transparent 4px, transparent 100%);
}
.wave.blue svg {
  fill: var(--blue);
}
.wave.blue.wave_1 {
  background: linear-top(to bottom, var(--blue), var(--blue) 4px, transparent 4px, transparent 100%);
}
.wave.blue.wave_2 {
  background: linear-top(to top, var(--blue), var(--blue) 4px, transparent 4px, transparent 100%);
}
.wave.yellow svg {
  fill: var(--yellow);
}
.wave.yellow.wave_1 {
  background: linear-top(to bottom, var(--yellow_light), var(--yellow_light) 4px, transparent 4px, transparent 100%);
}
.wave.yellow.wave_2 {
  background: linear-top(to top, var(--yellow_light), var(--yellow_light) 4px, transparent 4px, transparent 100%);
}

@media screen and (min-width: 1023px) {
  .history_sec:nth-child(even) .history_flex {
    flex-direction: row-reverse;
  }
}
.history_sec:last-child .history_flex {
  padding-bottom: 80px;
}

ul.news_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
ul.news_list li.news_item {
  width: 100%;
}
ul.news_list li.news_item a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
ul.news_list li.news_item a .thumb {
  flex: 1;
  position: relative;
  aspect-ratio: 14/8;
  overflow: hidden;
}
ul.news_list li.news_item a .thumb span.circle, ul.news_list li.news_item a .thumb::before, ul.news_list li.news_item a .thumb::after {
  display: block;
  content: "";
  background-color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 8px;
  position: absolute;
}
ul.news_list li.news_item a .thumb span:nth-child(1) {
  top: -8px;
  left: -8px;
}
ul.news_list li.news_item a .thumb span:nth-child(2) {
  top: -8px;
  right: -8px;
}
ul.news_list li.news_item a .thumb::before {
  bottom: -8px;
  left: -8px;
}
ul.news_list li.news_item a .thumb::after {
  bottom: -8px;
  right: -8px;
}
ul.news_list li.news_item a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.news_list li.news_item a .text {
  flex: 1;
}
ul.news_list li.news_item a .text p.date {
  font-size: 0.938rem;
  line-height: 1;
  margin-bottom: 4px;
}
ul.news_list li.news_item a .text h3.title {
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1.5;
  overflow: hidden;
}
@media screen and (min-width: 1023px) {
  ul.news_list {
    flex-direction: row;
    gap: 40px;
  }
  ul.news_list li.news_item {
    width: calc((100% - 64px) / 3);
  }
}

ul.gallery_list {
  padding: 40px 0;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (min-width: 1023px) {
  ul.gallery_list {
    padding: 88px 0;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
}
ul.gallery_list li.gallery_item {
  cursor: pointer;
}
ul.gallery_list li.gallery_item a {
  display: block;
  position: relative;
}
ul.gallery_list li.gallery_item a .thumb {
  position: relative;
  overflow: visible;
  width: 100%;
  aspect-ratio: 622/409.591;
}
ul.gallery_list li.gallery_item a .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: url(#custom-clip);
  /* Safari用 */
  clip-path: url(#custom-clip);
}
ul.gallery_list li.gallery_item a .thumb .outline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
ul.gallery_list li.gallery_item a .year {
  color: var(--white);
  font-size: 4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1023px) {
  ul.gallery_list li.gallery_item {
    width: calc((100% - 40px) / 2);
  }
}

footer {
  padding: 32px 0 48px 0;
  background-color: var(--white);
  border-top: 4px solid var(--red);
}
footer .inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .inner .logoarea a {
  display: block;
  max-width: 160px;
}
footer .inner .navarea nav ul li {
  margin-bottom: 1em;
}
footer .inner .navarea nav ul li a {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
}
footer .inner .navarea .storearea {
  margin-top: 40px;
}
footer .inner .navarea .storearea a {
  display: block;
  max-width: 312px;
}
@media screen and (min-width: 1023px) {
  footer {
    padding: 48px 0 64px 0;
  }
  footer .inner {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .inner .logoarea {
    width: 50%;
  }
  footer .inner .logoarea a {
    max-width: 240px;
  }
  footer .inner .navarea {
    width: 50%;
    max-width: 480px;
  }
  footer .inner .navarea nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  footer .inner .navarea nav ul li {
    width: calc(33% - 1em);
  }
  footer .inner .navarea nav ul li a {
    font-size: 1.125rem;
  }
}

.lower_main .inner {
  padding-top: 48px;
  padding-bottom: 48px;
}
.lower_main .inner h1.lower_main_title {
  text-align: center;
  opacity: 0;
  animation: FadeinSlide 0.5s ease-in 0.2s forwards;
}
.lower_main .inner h1.lower_main_title span {
  display: block;
}
.lower_main .inner h1.lower_main_title span.eng {
  height: 56px;
}
.lower_main .inner h1.lower_main_title span.eng img {
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lower_main .inner h1.lower_main_title span.jp {
  font-size: 0.9375rem;
  margin-top: 1em;
}
@media screen and (min-width: 1023px) {
  .lower_main .inner h1.lower_main_title span.eng {
    height: 88px;
  }
  .lower_main .inner h1.lower_main_title span.eng img {
    height: 88px;
  }
  .lower_main .inner h1.lower_main_title span.jp {
    font-size: 1.5rem;
  }
}

@keyframes fadeincopy {
  0% {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    opacity: 0;
  }
  100% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    opacity: 1;
  }
}
section#history_main {
  position: relative;
  margin-top: 64px;
  background: var(--yellow_grad);
  overflow: hidden;
}
section#history_main .inner {
  position: relative;
  z-index: 1;
  padding: 0;
}
section#history_main .inner .lower_main_title {
  margin-top: 48px;
  animation: FadeinSlide 0.5s ease-in 1.2s forwards;
}
section#history_main .inner .lower_main_title span.jp {
  color: var(--red);
}
section#history_main .inner .history_h2 {
  max-width: 336px;
  margin: 32px auto;
  opacity: 0;
  display: block;
  -webkit-mask-image: linear-gradient(120deg, black 50%, transparent 60%);
  mask-image: linear-gradient(120deg, black 50%, transparent 60%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: fadeincopy 1.2s ease-out 2s forwards;
  transition: 0.2s;
}
section#history_main .inner .history_h2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (min-width: 769px) {
  section#history_main .inner .history_h2 {
    max-width: 800px;
  }
}
section#history_main .history_mainimg {
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: block;
  opacity: 0;
  animation: Fadein 0.8s ease-in 0.8s forwards;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
section#history_main .history_mainimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1023px) {
  section#history_main {
    margin-top: 80px;
  }
}

section#history_countries {
  padding: 40px 32px 0 32px;
}
section#history_countries .history_countries_img {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
section#history_countries .history_countries_img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  opacity: 0;
}
section#history_countries .history_countries_img img:nth-child(1) {
  z-index: 0;
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
}
section#history_countries .history_countries_img.show {
  opacity: 1;
}
section#history_countries .history_countries_img.show img:nth-child(1) {
  animation: FadeinSlide 0.8s ease-in 0.4s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(2) {
  animation: Fadein 0.4s ease-in 0.8s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(3) {
  animation: Fadein 0.4s ease-in 1s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(4) {
  animation: Fadein 0.4s ease-in 1.2s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(5) {
  animation: Fadein 0.4s ease-in 1.4s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(6) {
  animation: Fadein 0.4s ease-in 1.6s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(7) {
  animation: Fadein 0.4s ease-in 1.8s forwards;
}
section#history_countries .history_countries_img.show img:nth-child(8) {
  animation: Fadein 0.4s ease-in 2s forwards;
}
@media screen and (min-width: 1023px) {
  section#history_countries {
    padding: 80px 32px 80px 32px;
  }
}

section.history_sec {
  overflow: hidden;
}
section.history_sec.history_white {
  background: var(--white);
}
section.history_sec.history_gray {
  background: var(--gray);
}
section.history_sec .history_flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}
section.history_sec .history_flex .left {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 1023px) {
  section.history_sec .history_flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
    padding-left: 32px;
    padding-right: 32px;
  }
  section.history_sec .history_flex .left,
  section.history_sec .history_flex .right {
    width: 50%;
    padding: 0;
  }
}
section.history_sec .history_h_box h2 {
  height: 48px;
  margin-bottom: 36px;
}
section.history_sec .history_h_box h2 img {
  height: 48px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
section.history_sec .history_h_box p img {
  height: 48px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  margin-bottom: 24px;
}
section.history_sec .history_h_box p img:last-child {
  margin-bottom: 40px;
}
section.history_sec .history_wrap .history_item {
  padding: 0 16px;
  margin-bottom: 8px;
  overflow: hidden;
}
section.history_sec .history_wrap .history_item .history_item_content,
section.history_sec .history_wrap .history_item dl {
  display: flex;
  gap: 8px;
  font-size: 0.938rem;
  line-height: 1.66;
}
section.history_sec .history_wrap .history_item .history_item_content h3,
section.history_sec .history_wrap .history_item .history_item_content dt,
section.history_sec .history_wrap .history_item dl h3,
section.history_sec .history_wrap .history_item dl dt {
  min-width: 64px;
  border-right: 1px solid var(--red);
  padding-bottom: 16px;
}
section.history_sec .history_wrap .history_item .history_item_content h3,
section.history_sec .history_wrap .history_item dl h3 {
  color: var(--red);
  font-weight: 700;
}
section.history_sec .history_img_wrap .img {
  aspect-ratio: 1/1;
  margin-bottom: 8px;
}
section.history_sec .history_img_wrap .img:last-child {
  margin-bottom: 0;
}
section.history_sec .history_img_wrap .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section#main_teams,
section#main_csr,
section#main_gallery {
  padding-top: 64px;
}

section.teams_sec .teams_flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section.teams_sec .teams_flex .teams_flex_text {
  padding-left: 16px;
  padding-right: 16px;
}
section.teams_sec .teams_flex .teams_flex_text h2 {
  margin-bottom: 24px;
  padding-left: 4px;
  padding-right: 4px;
}
section.teams_sec .teams_flex .teams_flex_text p {
  color: var(--white);
  font-size: 0.938rem;
  line-height: 1.8;
  padding-left: 16px;
  padding-right: 16px;
}
section.teams_sec .teams_flex .teams_flex_text .btn_area {
  margin-top: 16px;
}
section.teams_sec .teams_flex .teams_flex_text .btn_area a svg {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.125));
}
@media screen and (min-width: 1023px) {
  section.teams_sec .teams_flex {
    flex-direction: row;
    gap: 40px;
    max-width: 1132px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  section.teams_sec .teams_flex .teams_flex_item {
    width: 50%;
  }
  section.teams_sec .teams_flex .teams_flex_item.teams_flex_text {
    padding-left: 0;
    padding-right: 0;
    padding-top: 48px;
    padding-right: 120px;
  }
  section.teams_sec .teams_flex .teams_flex_item.teams_flex_text .btn_area {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1023px) {
  section.teams_sec:nth-child(odd) .teams_flex {
    flex-direction: row-reverse;
  }
  section.teams_sec:nth-child(odd) .teams_flex .teams_flex_item.teams_flex_text {
    padding-left: 120px;
    padding-right: 0px;
  }
}

section#teams_1 {
  background-color: var(--pink);
}
section#teams_1 .teams_flex {
  margin-top: -80px;
}
@media screen and (min-width: 1023px) {
  section#teams_1 .teams_flex {
    margin-top: 0;
  }
}
@media screen and (min-width: 1023px) {
  section#teams_1 .teams_flex .teams_img {
    margin-top: -80px;
  }
}
section#teams_1 .teams_flex .teams_flex_text h2 {
  height: 72px;
}
section#teams_1 .teams_flex .teams_flex_text h2 img {
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

section#teams_2 {
  background-color: var(--blue);
}
section#teams_2 .teams_flex {
  margin-top: -40px;
}
@media screen and (min-width: 1023px) {
  section#teams_2 .teams_flex {
    margin-top: 0;
  }
}
@media screen and (min-width: 1023px) {
  section#teams_2 .teams_flex .teams_img {
    margin-top: -40px;
  }
}
section#teams_2 .teams_flex .teams_flex_text h2 {
  height: 56px;
}
section#teams_2 .teams_flex .teams_flex_text h2 img {
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

section#teams_3 {
  background-color: var(--yellow_light);
  padding-bottom: 80px;
}
section#teams_3 .teams_flex {
  margin-top: -40px;
}
@media screen and (min-width: 1023px) {
  section#teams_3 .teams_flex {
    margin-top: 0;
  }
}
@media screen and (min-width: 1023px) {
  section#teams_3 .teams_flex .teams_img {
    margin-top: -40px;
  }
}
section#teams_3 .teams_flex .teams_flex_text h2 {
  height: 136px;
}
section#teams_3 .teams_flex .teams_flex_text h2 img {
  height: 136px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
section#teams_3 .teams_flex .teams_flex_text p {
  color: var(--black);
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  padding: 40px 16px;
}
.scroll-infinity__wrap .scroll-infinity__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item {
  width: calc((100% - 8px) / 2);
}
.scroll-infinity__wrap .scroll-infinity__list:nth-child(2) {
  display: none;
}
@media screen and (min-width: 1023px) {
  .scroll-infinity__wrap .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
    margin-right: 8px;
    flex-wrap: nowrap;
    animation: infinity-scroll-left 48s infinite linear 0.5s both;
  }
  .scroll-infinity__wrap .scroll-infinity__list:nth-child(2) {
    display: flex;
    flex-wrap: nowrap;
  }
  .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item {
    width: 16.6666666667vw;
  }
  .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item > img {
    width: 100%;
  }
}

section#main_csr h1 {
  margin-bottom: 48px;
}
section#main_csr h1 span.jp {
  color: var(--red);
}

.lower_post_list .news_list {
  flex-wrap: wrap;
  gap: 40px;
}
.lower_post_list .news_list .news_item {
  width: 100%;
}
@media screen and (min-width: 1023px) {
  .lower_post_list .news_list li.news_item {
    width: calc((100% - 40px) / 2);
  }
}
.lower_post_list ul.csr_list {
  overflow-x: hidden;
}
.lower_post_list ul.csr_list li.news_item {
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 24px;
}
.lower_post_list ul.csr_list li.news_item a {
  display: block;
  color: var(--red);
  text-align: center;
  margin-bottom: 0px;
  font-size: 1.125rem;
  overflow: hidden;
  border: 2px solid var(white);
  box-sizing: border-box;
  aspect-ratio: 1/1;
  position: relative;
}
.lower_post_list ul.csr_list li.news_item a .thumb {
  width: 100%;
  overflow: hidden;
  border: 2px solid var(white);
  box-sizing: border-box;
  aspect-ratio: 1/1;
}
.lower_post_list ul.csr_list li.news_item a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower_post_list ul.csr_list li.news_item a .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  font-weight: 600;
  color: var(--black);
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 1023px) {
  .lower_post_list ul.csr_list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lower_post_list ul.csr_list li.news_item {
    margin-bottom: 0;
  }
  .lower_post_list ul.csr_list li.news_item {
    width: calc((100% - 24px) / 2);
  }
  .lower_post_list ul.csr_list li.news_item a {
    margin-bottom: 0px;
  }
}

#main_gallery,
#gallery_list {
  background-color: var(--green);
}

.pager {
  margin: 0px auto;
  padding: 56px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pager a,
.pager span {
  display: block;
  font-weight: 500;
  width: 1.25em;
  padding-bottom: 4px;
}
.pager a.current,
.pager span.current {
  border-bottom: 2px solid var(--red);
}
.pager a.prev, .pager a.next,
.pager span.prev,
.pager span.next {
  width: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager a.prev span, .pager a.next span,
.pager span.prev span,
.pager span.next span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--black);
  border-top: 2px solid var(--black);
}
.pager a.prev span,
.pager span.prev span {
  transform: rotate(-135deg);
}
.pager a.next span,
.pager span.next span {
  transform: rotate(45deg);
}

.single_wrap {
  padding-top: 80px;
}
.single_wrap .thumb {
  position: relative;
  overflow: hidden;
}
.single_wrap .thumb span.circle, .single_wrap .thumb::before, .single_wrap .thumb::after {
  display: block;
  content: "";
  background-color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  position: absolute;
}
.single_wrap .thumb span:nth-child(1) {
  top: -24px;
  left: -24px;
}
.single_wrap .thumb span:nth-child(2) {
  top: -24px;
  right: -24px;
}
.single_wrap .thumb::before {
  bottom: -24px;
  left: -24px;
}
.single_wrap .thumb::after {
  bottom: -24px;
  right: -24px;
}
.single_wrap .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.csr_wrap {
  padding-top: 24px;
}
@media screen and (min-width: 1023px) {
  .csr_wrap {
    padding-top: 48px;
  }
}
.csr_wrap h1.csr_title {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--brown);
  font-weight: 700;
}
.csr_wrap h1.csr_title picture {
  display: block;
}
.csr_wrap h1.csr_title picture:nth-child(1) {
  margin-bottom: 12px;
}
.csr_wrap h1.csr_title picture:nth-child(2) {
  margin-top: 12px;
  transform: rotate(180deg);
}
.csr_wrap .thumb::before, .csr_wrap .thumb::after {
  display: none;
}

.csr_det_text_wrap {
  margin-top: 40px;
  background: var(--gray);
}

.det_text {
  padding-top: 16px;
}
.det_text .titlearea {
  border-bottom: 2px solid var(--red);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.det_text .titlearea.gallery_titlearea {
  border-bottom: 2px solid var(--gold);
}
.det_text .titlearea h1, .det_text .titlearea p {
  padding: 0 16px;
}
.det_text .titlearea h1 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 700;
}
.det_text .titlearea p {
  font-size: 0.938rem;
  line-height: 1;
}
.det_text .content {
  padding: 0px 16px 40px 16px;
}
.det_text .content h1, .det_text .content h2, .det_text .content h3, .det_text .content h4, .det_text .content h5, .det_text .content h6 {
  font-weight: 700;
  margin: 1.25em 0;
  line-height: 1.7;
}
.det_text .content h1 {
  font-size: 1.5rem;
}
.det_text .content h2 {
  font-size: 1.25rem;
}
.det_text .content h3 {
  font-size: 1.125rem;
}
.det_text .content h4 {
  font-size: 1rem;
}
.det_text .content h5 {
  font-size: 1rem;
}
.det_text .content h6 {
  font-size: 0.938rem;
}
.det_text .content p {
  font-size: 0.938rem;
  line-height: 2;
  margin-bottom: 1em;
}
.det_text .content figure {
  margin: 32px 0;
}
.det_text .content ul.wp-block-list {
  margin: 2em 0;
  list-style: disc;
  padding-left: 1em;
}
.det_text .content ul.wp-block-list li {
  margin: 0.5em 0;
}
.det_text .content ol.wp-block-list {
  margin: 2em 0;
  list-style: decimal;
  padding-left: 1em;
}
.det_text .content ol.wp-block-list li {
  margin: 0.5em 0;
}
.det_text .content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56%;
}
.det_text .content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.det_text.csr_det_text {
  padding: 16px 0 0 0;
  background: var(--gray);
}
.det_text.csr_det_text .content {
  padding: 0px 16px 40px 16px;
  text-align: center;
  color: var(--brown);
}
.det_text.csr_det_text .content h1, .det_text.csr_det_text .content h2, .det_text.csr_det_text .content h3, .det_text.csr_det_text .content h4, .det_text.csr_det_text .content h5, .det_text.csr_det_text .content h6 {
  font-weight: 700;
  margin: 1.25em 0;
  line-height: 1.7;
  border: 1px solid var(--gold);
  background-color: var(--white);
  padding: 12px;
}
.det_text.csr_det_text .content h1 {
  font-size: 1.5rem;
}
.det_text.csr_det_text .content h2 {
  font-size: 1.25rem;
}
.det_text.csr_det_text .content h3 {
  font-size: 1.125rem;
}
.det_text.csr_det_text .content h4 {
  font-size: 1rem;
}
.det_text.csr_det_text .content h5 {
  font-size: 1rem;
}
.det_text.csr_det_text .content h6 {
  font-size: 1rem;
}
.det_text.csr_det_text .content p {
  font-size: 1rem;
  line-height: 2;
  margin: 1.25em 0;
  padding: 0 16px;
}
.det_text.csr_det_text .content figure {
  margin: 40px 0;
}
.det_text.csr_det_text .content ul.wp-block-list {
  margin: 2em 0;
  list-style: disc;
  padding-left: 1em;
}
.det_text.csr_det_text .content ul.wp-block-list li {
  margin: 0.5em 0;
}
.det_text.csr_det_text .content ol.wp-block-list {
  margin: 2em 0;
  list-style: decimal;
  padding-left: 1em;
}
.det_text.csr_det_text .content ol.wp-block-list li {
  margin: 0.5em 0;
}
.det_text.csr_det_text .content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56%;
}
.det_text.csr_det_text .content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 1023px) {
  .det_text.csr_det_text {
    padding: 80px 0 0 0;
  }
  .det_text.csr_det_text .content h1, .det_text.csr_det_text .content h2, .det_text.csr_det_text .content h3, .det_text.csr_det_text .content h4, .det_text.csr_det_text .content h5, .det_text.csr_det_text .content h6 {
    margin: 80px 0 40px 0;
  }
  .det_text.csr_det_text .content p {
    margin: 32px 0;
    padding: 0 16px;
  }
  .det_text.csr_det_text .content figure {
    margin: 40px 0;
  }
  .det_text.csr_det_text .content ul.wp-block-list {
    margin: 2em 0;
    list-style: disc;
    padding-left: 1em;
  }
  .det_text.csr_det_text .content ul.wp-block-list li {
    margin: 0.5em 0;
  }
  .det_text.csr_det_text .content ol.wp-block-list {
    margin: 2em 0;
    list-style: decimal;
    padding-left: 1em;
  }
  .det_text.csr_det_text .content ol.wp-block-list li {
    margin: 0.5em 0;
  }
  .det_text.csr_det_text .content .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    padding-top: 56%;
  }
  .det_text.csr_det_text .content .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.mainimg {
  position: relative;
  padding: 0 16px;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  .mainimg {
    padding: 0px;
  }
}
.mainimg .gallery_thumb {
  position: relative;
  overflow: visible;
  width: 100%;
  aspect-ratio: 622/409.591;
  max-width: 880px;
  margin: 0 auto;
}
.mainimg .gallery_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: url(#custom-clip);
  /* Safari用 */
  clip-path: url(#custom-clip);
}
.mainimg .gallery_thumb .outline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .mainimg .gallery_thumb {
    width: 134%;
    margin-left: -17%;
  }
}/*# sourceMappingURL=style.css.map */