@charset "UTF-8";
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

@media screen\0  {
  #content {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  /*overflow-x: hidden;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin: 0;
}

#header {
  width: 100%;
  text-align: center;
}
#header img {
  max-width: 100%;
  height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
:root {
  --color-main: #ff5000;
}

.container {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}
.container a {
  text-decoration: none;
}
.container img {
  width: 100%;
  height: auto;
  display: block;
}
.container .header {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(#fff 0%, var(--color-main) 20%, var(--color-main) 100%);
}
.container .header__inner {
  position: relative;
  width: 100%;
}
.container .header .cover-img {
  position: relative;
  width: 100%;
  aspect-ratio: 75/58;
}
.container .header .cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
.container .header .cover-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100vw;
  aspect-ratio: 39/124;
  transform: scale(-1, 1) rotate(270deg);
  background-image: url(cover_bg.svg);
  background-repeat: no-repeat;
  transform-origin: left bottom;
}
.container .header .cover-text {
  position: relative;
  padding: 0 0 30px;
}
.container .header .cover-text h1, .container .header .cover-text span {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .header .cover-text img {
  display: block;
  width: 90%;
}
.container .header .cover-text span {
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}
.container .header .cover-text span::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 0;
  left: calc((100% - 100vw) / 2);
  height: 1px;
  background-color: #fff;
}
.container .lead {
  width: min(90%, 640px);
  margin: min(10vw, 60px) auto;
}
.container section {
  width: 100%;
  margin: min(10vw, 60px) auto;
}
.container section p {
  text-indent: 1em;
  font-size: 16px;
}
.container section p + p {
  margin-top: 1.5em;
}
.container section > p {
  width: 90%;
  margin: auto;
}
.container section.section_bg {
  background-color: #ffe8d4;
  padding: min(10vw, 60px) 0;
}
.container h2 {
  width: 90%;
  max-width: 800px;
  position: relative;
  padding-bottom: 20px;
  margin: 0 auto 30px;
}
.container h2 img {
  width: 100%;
  max-width: 670px;
}
.container h2::after {
  content: "";
  position: absolute;
  height: 1.5px;
  left: 0;
  bottom: 0;
  right: calc((100% - 100vw) / 2);
  background-color: var(--color-main);
}
.container .flexWrap {
  width: 90%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.container .flexWrap_first {
  flex-direction: column-reverse;
}
.container .photo img {
  margin-bottom: 10px;
}
.container .photo p {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  text-indent: 0;
  padding: 0 8px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 15px;
}
.container .photo p span {
  font-size: 120%;
}
.container .photo p + p {
  margin-top: 3px;
}
.container .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
}
.container .footer .link_btn {
  position: relative;
  display: block;
  width: 260px;
  border: solid 1px var(--color-main);
  border-radius: 50px;
  text-align: center;
  margin-bottom: 50px;
}
.container .footer .link_btn span {
  position: relative;
  display: block;
  color: var(--color-main);
  font-weight: 600;
  font-size: 120%;
}
.container .footer .link_btn::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--color-main);
}
.container .footer .link_btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.container .footer .link_logo {
  width: 180px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.container .footer .link_text {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--color-main);
}
@media screen and (min-width: 769px) {
  .container {
    overflow-x: hidden;
  }
  .container .header {
    background: linear-gradient(to right, var(--color-main) 0%, var(--color-main) 50%, #fff 50%, #fff 100%);
  }
  .container .header__inner {
    max-width: 1400px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 auto;
  }
  .container .header .cover-img {
    aspect-ratio: unset;
    width: 60%;
  }
  .container .header .cover-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .container .header .cover-img::before {
    left: -6%;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    transform: none;
  }
  .container .header .cover-text {
    width: 40%;
    padding: 0;
  }
  .container section > p {
    max-width: 800px;
  }
  .container .flexWrap {
    max-width: 880px;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    translate: calc((min(90vw, 800px) - 100%) / 2) 0;
  }
  .container .flexWrap_reverse {
    flex-direction: row-reverse;
    translate: calc((100% - min(90vw, 800px)) / 2) 0;
  }
  .container .photo {
    margin-top: 10px;
    width: 48.8636363636%;
  }
  .container .textWrap {
    width: 47.2727272727%;
  }
  .container .footer {
    margin: 80px 0;
  }
  .container .footer .link_btn {
    overflow: hidden;
  }
  .container .footer .link_btn span {
    z-index: 1;
    transition: color 0.3s ease;
  }
  .container .footer .link_btn::before {
    transition: transform 0.45s ease;
  }
  .container .footer .link_btn::after {
    z-index: 2;
  }
  .container .footer .link_btn:hover span {
    color: #fff;
  }
  .container .footer .link_btn:hover::before {
    transform: translateY(-50%) scale(24);
  }
  .container .footer .link_logo {
    margin-top: 60px;
    margin-bottom: 60px;
    transition: opacity 0.3s;
  }
  .container .footer .link_logo:hover {
    opacity: 0.6;
  }
  .container .footer .link_text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .container .footer .link_text:hover::after {
    transform: scaleX(0);
    transform-origin: right;
  }
}