@charset "UTF-8";
:root {
  --color-black:#000e27;
  --color-red:#cf121b;
  --color-lgray:#f0f1f2;
  --font-base: clamp(1.3rem, -0.216rem + 3.16vw, 1.6rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  text-align: justify;
  text-justify: inter-ideograph;
  color: var(--color-black);
  font-feature-settings: "palt";
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 751px) and (max-width: 1199px) {
  .br-pc {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .br-pc {
    display: none;
  }
}

@media screen and (min-width: 751px) and (max-width: 1199px) {
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .br-sp {
    display: block;
  }
}

.Wrapper {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  visibility: visible;
  transition: visibility 0.4s;
}

.Header {
  position: fixed;
  background-color: white;
  z-index: 1;
  width: 100vw;
}

.Header_Inner {
  display: flex;
  height: 6rem;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
}

.Header_Logo {
  margin-left: 10px;
  width: 250px;
}

.Header_Nav {
  flex: 1;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .Header_Nav {
    position: fixed;
    z-index: 101;
    top: 60px;
    left: 100%;
    width: 100%;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.9);
  }
}

.Header_Nav_List {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .Header_Nav_List {
    display: block;
    text-align: center;
  }
}

.Header_Nav_Item {
  margin-left: 2rem;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .Header_Nav_Item {
    padding: 2rem 0;
    border-top: var(--color-lgray) 1px solid;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .Header_Nav_Item_Sns {
    padding: 2rem 0;
    border-top: var(--color-lgray) 1px solid;
    font-size: 1.6rem;
  }
}

.Header_Nav_Item a {
  position: relative;
}

.Header_Nav_Item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  border-bottom: solid 2px var(--color-black);
  transform: translateX(-50%);
  transition: 0.3s;
}

.Header_Nav_Item a:hover::after {
  width: 100%;
}

.Header_Nav_Item_Sns a {
  margin-left: 2rem;
  transition: 0.3s;
}

.Header_Nav_Item_Sns a:hover {
  opacity: 0.7;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  position: absolute;
  z-index: 200; /* 重なり順を一番上にする */
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .drawer_open {
    display: flex;
  }
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  content: "";
  transition: 0.3s;
  background: #333;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .Header_Nav {
  left: 0; /* メニューを画面に入れる */
}

main {
  min-height: 100vh;
  margin-top: 60px;
}

.Hero {
  position: relative;
  width: 100%;
}

.Hero_Inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .Hero_Lead {
    width: 31.666vw;
    position: absolute;
    right: 4rem;
    top: 4rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1199px) {
  .Hero_Lead {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 67.62vw;
  }
}
@media screen and (max-width: 750px) {
  .Hero_Lead {
    position: absolute;
    bottom: 10.666vw;
    right: 4vw;
    width: 49.333vw;
  }
}

.Hero_Lead img {
  width: 100%;
}

.Hero_Line {
  position: absolute;
  bottom: 0;
  right: 0;
}

.Section {
  position: relative;
  max-width: 1024px;
  width: 90%;
  margin: 250px auto 20px;
  display: flex;
}
@media screen and (max-width: 750px) {
  .Section {
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 15rem;
  }
}

.Section.--right {
  justify-content: flex-end;
}

.Section_Hero.--Message {
  max-width: 777px;
  min-width: 650px;
}
@media screen and (max-width: 750px) {
  .Section_Hero.--Message {
    min-width: initial;
  }
}

.Section_Hero.Vision {
  width: 1000px;
}

.Message,
.Vision {
  position: absolute;
  width: 34.18vw;
  max-width: 350px;
  top: -7rem;
}
@media screen and (max-width: 750px) {
  .Message,
  .Vision {
    position: relative;
    width: 80%;
    max-width: initial;
    margin: 0 auto;
  }
}

.Message {
  left: 0;
}

.Vision {
  right: 0;
}

.Section_Heading {
  margin-left: -3px;
}

.Section_Lead {
  font-weight: bold;
  font-size: clamp(1.8rem, 2.05vw, 2.1rem);
  line-height: 1.6;
  margin-top: 2rem;
}

.Section_Lead.--Action {
  margin-top: 0;
  margin-left: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .Section_Lead.--Action {
    margin-left: 0;
    margin-top: 3rem;
  }
}

.Section_Text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.Vision_Figure {
  max-width: 222px;
  width: 50%;
  margin: 3rem auto;
}

.Action {
  display: flex;
  width: 750px;
  margin: 15rem auto 5rem auto;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .Action {
    display: block;
    width: 70%;
  }
}

.Action_Body {
  width: 100%;
  padding: 5rem 0 5rem 2rem;
  background-color: var(--color-red);
}

.Action_List {
  display: flex;
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
}

.Action_Item {
  flex: 0 0 auto;
  width: 360px;
  background-color: white;
  margin: 15px;
  padding: 5rem;
  position: relative;
  box-shadow: 0px 0px 15px 1px #700000;
  border-radius: 20px;
}

.Action_Item:last-child {
  margin-right: 10rem;
}

.Action_Num {
  position: absolute;
  left: 10px;
  top: 10px;
}

.Action_Figure {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Action_Heading {
  font-weight: bold;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.Action_Text {
  font-size: 1.4rem;
}

.Profile {
  width: 100%;
  position: relative;
  margin-top: 15vw;
}

.Profile_Inner {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .Profile_Inner {
    display: block;
    width: 100%;
  }
}

.Profile_Title {
  position: absolute;
  right: 3rem;
  top: 0;
  writing-mode: vertical-rl;
  text-align: right;
  width: 100%;
  font-size: 5.583vw;
  color: var(--color-red);
  font-weight: bold;
  font-feature-settings: "pkna";
}
@media screen and (max-width: 750px) {
  .Profile_Title {
    position: relative;
    font-size: 3rem;
    writing-mode: inherit;
    right: 0;
    text-align: center;
  }
}

.Profile_Hero {
  padding-top: 8.333vw;
}

.Profile_Body {
  background-color: var(--color-red);
  width: 54.166vw;
  max-width: 600px;
  display: flex;
  padding: 6rem;
  margin-top: -3.666vw;
}
@media screen and (max-width: 1024px) {
  .Profile_Body {
    display: grid;
    grid-template-columns: 150px 1fr;
    width: 100%;
    max-width: initial;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
  }
}
@media screen and (max-width: 750px) {
  .Profile_Body {
    display: block;
  }
}

.Profile_Standing {
  width: 14.6vw;
  max-width: 145px;
}
@media screen and (max-width: 1024px) {
  .Profile_Standing {
    width: 100%;
    max-width: initial;
  }
}
@media screen and (max-width: 750px) {
  .Profile_Standing {
    width: 30%;
    margin: 0 auto;
  }
}

.Profile_Standing img {
  width: 100%;
}

.Profile_Text {
  color: white;
  width: 27.5vw;
  padding-left: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .Profile_Text {
    width: 100%;
  }
}

.Profile_Heading {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .Profile_Heading {
    margin-top: 0;
  }
}

.Profile_Name {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

.Profile_Kana {
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 750px) {
  .Profile_Kana {
    display: block;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.Profile_Hobby {
  border-bottom: solid 1px white;
  margin-bottom: 1rem;
}

.Media {
  width: 38.333vw;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("/img/ube-map.png") no-repeat center center;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .Media {
    width: 100%;
    max-width: initial;
    padding: 10rem 0;
    background-color: var(--color-lgray);
  }
}

.Media_Link {
  font-weight: bold;
  font-size: 3vw;
  color: var(--color-black);
  position: relative;
  transition: 0.3s all;
}
@media screen and (max-width: 1024px) {
  .Media_Link {
    font-size: 4.5rem;
  }
}

.Media_Link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  border-bottom: solid 3px var(--color-black);
  transform: translateX(-50%);
  transition: 0.3s;
}

.Media_Link:hover {
  opacity: 0.7;
}

.Media_Link:hover::after {
  width: 0;
}

.Media_Link.-Facebook::before {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("/img/ico-facebook.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.Support {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 10vw auto 20px;
}
@media screen and (max-width: 1024px) {
  .Support {
    width: 100%;
    max-width: initial;
  }
}

.Support_Hero {
  max-width: 777px;
}
@media screen and (max-width: 1024px) {
  .Support_Hero {
    width: 100%;
    max-width: initial;
  }
}

.Support_Hero img {
  width: 100%;
}

.Support_Inner {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .Support_Inner {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
}

.Support_Body {
  padding: 15rem 0;
  line-height: 1.8;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .Support_Body {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 7rem 0;
  }
}

.Support_Title {
  position: absolute;
  writing-mode: vertical-rl;
  text-align: right;
  width: 100%;
  font-size: 5.583vw;
  color: var(--color-red);
  font-weight: bold;
  font-feature-settings: "pkna";
}
@media screen and (max-width: 750px) {
  .Support_Title {
    font-size: 3rem;
    writing-mode: inherit;
    text-align: center;
  }
}

.Support_Heading {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .Support_Heading {
    text-align: center;
  }
}

.Support_Heading span {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.Support_Contents {
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .Support_Contents {
    padding: 0 5rem;
  }
}

.Pdf {
  display: grid;
  grid-template-columns: 60px 1fr;
  width: 65%;
  height: 60px;
  margin-top: 3rem;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .Pdf {
    width: 100%;
  }
}

.Pdf:hover {
  opacity: 0.7;
}

.Pdf_Icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-red);
}

.Pdf_Lead {
  background-color: var(--color-lgray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.Footer {
  width: 100%;
  margin-top: 5rem;
  border-bottom: var(--color-red) solid 4px;
  position: relative;
}

.Footer_Inner {
  display: flex;
  padding: 0 3rem;
  align-items: center;
  height: 60px;
}
@media screen and (max-width: 750px) {
  .Footer_Inner {
    height: 120px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: initial;
  }
}

.Footer_Logo {
  margin-right: 3rem;
  width: 25vw;
  min-width: 250px;
}
@media screen and (max-width: 750px) {
  .Footer_Logo {
    margin-bottom: 5px;
  }
}

.Privacy {
  line-height: 1.2;
}

.Privacy a {
  font-size: 1.2rem;
  margin-right: 1rem;
}

.Privacy a:hover {
  text-decoration: underline;
}

.Credit {
  font-size: 1rem;
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: 0.3s;
}

.Page {
  position: relative;
  max-width: 1024px;
  width: 90%;
  margin: 10rem auto;
}

.PageTitle {
  width: 100%;
  padding: 7rem;
  background-color: var(--color-red);
}

.PageTitle h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.AboutSite {
  margin-bottom: 5rem;
}

.AboutSite_Heading {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.PrivacyPolicy {
  font-weight: bold;
  margin-bottom: 5rem;
}

.Contact {
  position: relative;
  max-width: 760px;
  width: 90%;
  margin: 10rem auto;
}

.Contact_title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.buying,
.contact {
  width: 760px;
  margin: 0 auto;
  padding: var(--space-10) 0;
}

.buying_inner,
.contact_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.strong {
  font-weight: bold;
  color: #d00020;
  display: block;
  margin: 10px 0;
}

.buying_important {
  border: 1px solid #d00020;
  padding: 3em;
  margin-top: 20px;
}

.buying_important a {
  color: var(--color-accent);
}

.buying_important_title {
  font-weight: bold;
  margin-bottom: 1em;
}

.buyingForm,
.contactForm {
  width: 100%;
  text-align: left;
}

.buyingForm_title,
.contactForm_title {
  padding: 1.5em;
  background-color: var(--color-gray-1);
  width: 100%;
  display: block;
  margin-top: var(--space-8);
  text-align: center;
}

.buyingForm_item,
.contactForm_item {
  padding: 2em 0;
  border-bottom: 1px solid var(--color-lgray);
}

.must {
  padding: 2px 6px;
  background-color: #d00020;
  color: white;
  font-size: 12px;
  display: inline-block;
  line-height: normal;
}

.sideBySide {
  display: flex;
  align-items: center;
}

.label-check {
  margin-left: 20px;
}

.label-check:first-child {
  margin-left: 0;
}

.buyingForm_item_inner,
.contactForm_item_inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 30px;
}

.buyingForm_cat,
.contactForm_cat {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.textBox,
.textArea {
  width: 100%;
  padding: 1.2em 7px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  color: gray;
  resize: vertical;
}

.textBox:focus {
  outline: 0;
  background-color: var(--color-white);
}

.submit {
  text-align: center;
}

.submit button {
  width: 300px;
  padding: 16px;
  background-color: var(--color-black);
  color: white;
  border-radius: 9999px;
  border: none;
  margin-top: 30px;
}

.submit button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .buying,
  .contact {
    width: 80%;
  }
  .buyingForm_item_inner,
  .contactForm_item_inner {
    display: block;
  }
  .sideBySide {
    display: block;
  }
  .label-check {
    display: block;
    margin-bottom: 0.5em;
    margin-left: 0;
  }
  .buyingForm_cat,
  .contactForm_cat {
    margin-bottom: 1em;
    justify-content: flex-start;
  }
  .buyingForm_cat p,
  .contactForm_cat p {
    padding-right: 1em;
  }
}
.checkbox {
  transform: scale(1.4);
}
