@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
a img {
  border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
}
html, body {
  font-family: var(--font-ja);
  line-height: 1.4;
  /*text-align: justify;*/
  font-size: 10px;
  /*scroll-behavior: smooth;*/
  /*-webkit-overflow-scrolling: touch;*/
  font-weight: var(--medium);
  color: var(--color-txt);
  /* font-feature-settings: "palt"; */
  letter-spacing: 0.01em;
}
a {
  display: inline-block;
  color: initial;
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}
.flex {
  display: flex;
}
button {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  letter-spacing: 0;
}
/*
p, dt, dd {
  overflow-wrap: break-word;
}
*/
body {
  margin: auto;
  /* opacity: 0;
  animation: fadeIn .7s .2s ease-out forwards; */
}
small {
  font-size: 70%;
}
main {
  overflow: hidden;
}
li {
  list-style: none;
}
input,
textarea,
select,
option,
button {
  font-family: var(--font-ja);
  font-weight: var(--medium);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
option:focus-visible {
  outline: none;
}
input:not([type="checkbox"],[type="button"]),
.input,
textarea,
.textarea,
select {
  width: 100%;
  padding: 1.5rem 1.6rem;
  background: white;
  border-radius: 0.2rem;
  border: 1px solid var(--color-navy);
  font-size: 1.8rem;
  font-weight: var(--medium);
  color: var(--color-txt);
}
select {
  background: var(--color-white) url(../img/common/icon_select_arrow.png) center right 1.6rem/1rem auto no-repeat;
}
select::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.checkbox {
  display: block;
  margin: 3rem auto 0;
  width: max-content;
  font-size: 1.8rem;
  cursor: pointer;
}
input[type="checkbox"] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 0.2rem;
  background: white;
  border: 1px solid var(--color-border);
  margin: 0 1rem -0.3rem 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.2s;
  cursor: pointer;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  content: '';
  top: 40%;
  left: 50%;
  width: 0.7rem;
  height: 1rem;
  border-right: 0.2rem solid var(--color-border);
  border-bottom: 0.2rem solid var(--color-border);
  transform: translate(-50%, -50%) rotate(50deg);
}
input.submit_button,
.button_cr {
  display: block;
  width: 32rem;
  padding: 2rem;
  margin: 5rem auto 0;
  background: var(--color-navy);
  border-radius: 5rem;
  border: none;
  font-size: 2rem;
  font-weight: var(--medium);
  color: white; 
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
.back_button {
  display: block;
  width: max-content;
  margin: 4rem auto 0;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  background: none;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  font-weight: var(--medium);
  cursor: pointer;
  color: var(--color-txt);
  border-bottom: 1px solid var(--color-txt);
}
textarea,
.textarea {
  min-height: 15.4rem;
  resize: vertical;
}
textarea::-webkit-scrollbar {
  width: 1.5rem;
}
textarea::-webkit-scrollbar-track {
  background-color: none;
}
textarea::-webkit-scrollbar-thumb {
  background-color: #f0f0f0;
  border: 1px solid #cecece;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  ::-webkit-scrollbar{
    width: 0;
  }
}
@media screen and (max-width: 1440px) {
  html, body {
    font-size: calc(1000vw / 1440);
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: calc(1000vw / 390);
  }
}
.sp,
.spi {
  display: none !important;
}
.pc {
  display: block !important;
}
.pci {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .spi {
    display: inline-block !important;
  }
  .pc,
  .pci {
    display: none !important;
  }
  input:not([type="checkbox"],[type="button"]),
  .input,
  textarea,
  .textarea,
  select {
    padding: 1rem 1.6rem;
    border-radius: 0.2rem;
    font-size: 1.6rem;
  }
  input.submit_button,
  .button_cr {
    padding: 2rem;
    border-radius: 5rem;
    font-size: 1.6rem;
  }
  .back_button {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  textarea::-webkit-scrollbar {
    width: 1.2rem;
  }
  .checkbox {
    margin: 1rem auto 0;
    font-size: 1.6rem;
  }
}

/* ----------------------------------
common
---------------------------------- */
:root {
  --color-navy: #26476c;
  --color-yellow: #b59518;
  --color-gr: linear-gradient(-90deg, #26466c 0%, #b59518 100%);
  --color-white: #efebe7;
  --color-txt: #1f2326;
  --color-border: #c7c4be;
  --shadow: 0.2rem 0 0.5rem rgb(0 0 0 / 0.2);
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --font-en: "Montserrat", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
}
main {
  background: var(--color-navy);
}
.is-hide {
  display: none !important;
}
.en {
  font-family: var(--font-en);
}
.ja {
  font-family: var(--font-ja);
}

a {
  transition: .3s;
}
::placeholder {
  color: #B1B9BA;
}
body.fixed {
  /* width: 100%;
  height: 100%;
  position: fixed; */
  overflow: hidden;
}
.in {
  max-width: 136rem;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.txt {
  font-size: 1.8rem;
  font-weight: var(--medium);
  line-height: 1.66;
}
.df_ttl .ttl_h2 {
  font-size: 1.8rem;
  font-weight: var(--semibold);
  color: var(--color-yellow);
  padding-left: 2.3rem;
  background: url(../img/common/icon_star.png) center left/1.5rem auto no-repeat;
  line-height: 1;
  letter-spacing: 0.05em;
}
.df_ttl .lead {
  font-size: 3.2rem;
  font-weight: var(--bold);
  line-height: 1.4;
}
.df_ttl .ttl_h2 + .lead {
  margin-top: 4.1rem;
}
.df_ttl .lead + .txt {
  margin-top: 3.6rem;
}
.button {
  margin-top: 4rem;
  min-width: 32rem;
  padding: 1.8rem 2rem;
  border: 1px solid white;
  border-radius: 0.6rem;
  background: var(--color-navy) url(../img/common/btn_arrow.png) center right 1.2rem/1.4rem auto no-repeat;
  font-size: 1.6rem;
  color: white;
}
.text_link {
  font-size: 1.6rem;
  padding-right: 2.4rem;
  background: url(../img/common/btn_arrow.png) center right / 1.4rem auto no-repeat;
  color: var(--color-navy);
}
.ob_c {
  position: relative;
  overflow: hidden;
}
.ob_c img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ttl_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ttl_flex .df_ttl {
  width: 60rem;
}
@media screen and (min-width: 768px) {
  a:not(.button):hover {
    opacity: 0.6;
  }
  input.submit_button:hover,
  .button_cr:hover,
  .button:hover,
  header .right .button:hover {
    background-color: var(--color-yellow);
    color: white;
  }
}
@media screen and (max-width: 767px) {
  .in {
    max-width: none;
    margin: 0 2rem;
  }
  .txt {
    font-size: 1.5rem;
  }
  .df_ttl .ttl_h2 {
    font-size: 1.4rem;
    padding-left: 1.7rem;
    background-size: 1.2rem auto;
  }
  .df_ttl .lead {
    font-size: 2.2rem;
  }
  .df_ttl .ttl_h2 + .lead {
    margin-top: 3rem;
  }
  .df_ttl .lead + .txt {
    margin-top: 3rem;
  }
  .button {
    margin-top: 3rem;
    background-size: 1.2rem auto;
    font-size: 1.5rem;
  }
  .text_link {
    font-size: 1.4rem;
    padding-right: 1.6rem;
    background-size: 1.2rem auto;
  }
  .ttl_flex {
    display: block;
  }
  .ttl_flex .df_ttl {
    width: 100%;
  }
}

/* mv ----------------------------------- */
.mv {
  position: relative;
  padding: 19rem 0 0;
}
.mv .ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
}
.mv .ttl_wrap .lead {
  font-size: 4.4rem;
  font-weight: var(--bold);
  line-height: 1.4;
}
.mv .ttl_wrap .right {
  position: relative;
  width: 37rem;
}
.mv .ttl_wrap .right .txt {
  opacity: 0.5;
}
.mv .ttl_wrap .right .scroll {
  position: absolute;
  width: max-content;
  right: 0;
  font-size: 1.2rem;
  font-family: var(--font-en);
  margin-top: 3.8rem;
  padding-right: 2.2rem;
  background: url(../img/common/text_link_bt.png) center right/1.4rem auto no-repeat;
  letter-spacing: 0.05em;
}
.mv .mv_img {
  height: 54rem;
  width: calc(100% + 16rem);
  margin: 8.8rem -8rem 0;
  border-radius: 0.6rem;
}
.loop {
  position: absolute;
  display: flex;
  bottom: 2.7rem;
  width: 100%;
  overflow: hidden;
}
.loop_inner {
  display: flex;
  width: max-content;
  animation: loop 50s linear infinite;
}
.loop_txt {
  white-space: nowrap;
  font-size: 12rem;
  padding-right: 4rem; /* テキスト間の間隔 */
  font-family: var(--font-en);
  letter-spacing: -0.01em;
  line-height: 1;
  color: #ffffff;
}
.loop_txt span {
  color: var(--color-yellow);
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 16.5rem 0 0;
  }
  .mv .ttl_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .mv .ttl_wrap .lead {
    font-size: 2.8rem;
  }
  .mv .ttl_wrap .right {
    width: 100%;
  }
  .mv .ttl_wrap .right .txt {
    font-size: 1.6rem;
  }
  .mv .ttl_wrap .right .scroll {
    position: static;
    margin-top: 4.3rem;
    font-size: 1rem;
    padding-right: 1.7rem;
    background-size: 1.2rem auto;
  }
  .mv .mv_img {
    height: 32rem;
    width: calc(100% + 4rem);
    margin: 1.4rem -2rem 0;
    border-radius: 0;
  }
  .loop {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
  }
  .loop_txt {
    font-size: 6rem;
    color: white;
  }
}

/* about ----------------------------------- */
.about {
  padding: 18rem 0 0;
}
.about .img_wrap {
  position: absolute;
  width: 68rem;
  height: 48rem;
  border-radius: 0.6rem;
  margin: -6rem 0 0 -8rem;
  z-index: 1;
}
.about .txt_wrap {
  position: relative;
  width: 88rem;
  margin: 0 0 0 auto;
  padding: 7rem 4rem 8rem 24rem;
}
.about .txt_wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: calc(50% + 50vw);
  height: 100%;
  background: var(--color-white);
  pointer-events: none;
}
.about .txt_wrap * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 7rem 0 0;
  }
  .about .img_wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 34rem;
    height: 24rem;
    margin: 0 0 0 -2rem;
  }
  .about .txt_wrap {
    width: auto;
    margin: -4rem -2rem 0;
    padding: 7rem 2rem 5rem;
    background: var(--color-white);
    border-bottom-left-radius: 0.6rem;
  }
  .about .txt_wrap::after {
    content: none;
  }
}

/* service ----------------------------------- */
.service {
  padding: 7rem 0 10rem;
}
.service .df_ttl {
  color: white;
}
.service .df_ttl .txt {
  opacity: 0.5;
}
.service_list {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.service_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: calc(33.33% - (4rem * 2 / 3));
  height: 24rem;
  background: var(--color-white);
  border-radius: 0.6rem;
  border: 1px solid #c7c4be;
}
.service_card figure {
  text-align: center;
}
.service_card img {
  width: 14rem;
  margin: 0 auto;
}
.service_card .num {
  position: absolute;
  left: 1.6rem;
  top: 2rem;
  font-size: 4.8rem;
  font-family: var(--font-en);
  font-weight: var(--medium);
  font-style: italic;
  line-height: 1;
  color: var(--color-navy);
}
.service_card .text_link {
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
}
.service_card figcaption {
  font-size: 2.2rem;
  font-weight: var(--bold);
  color: var(--color-navy);
}
@media screen and (max-width: 767px) {
  .service {
    position: relative;
    padding: 6rem 0 14rem;
  }
  .service .button {
    position: absolute;
    left: 2rem;
    bottom: 5rem;
  }
  .service_list {
    gap: 1rem;
  }
  .service_card {
    width: calc(50% - 0.5rem);
    height: 20rem;
    padding-bottom: 2rem;
  }
  .service_card img {
    width: 10.5rem;
  }
  .service_card .num {
    left: 1rem;
    top: 1rem;
    font-size: 2.4rem;
  }
  .service_card .text_link {
    right: 1.2rem;
    bottom: 1.6rem;
  }
  .service_card figcaption {
    font-size: 1.8rem;
  }
}

/* reason ----------------------------------- */
.reason .in {
  position: relative;
  padding: 7rem 0 4rem;
}
.reason .in::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: calc(50% + 50vw + 8rem);
  margin-left: calc(50% - 50vw);
  background: var(--color-white);
  pointer-events: none;
}
.reason .in > * {
  position: relative;
  z-index: 1;
}
.reason .main_img {
  position: absolute;
  width: 60rem;
  height: 44rem;
  top: -6rem;
  right: -12rem;
  border-radius: 0.6rem;
}
.reason .df_ttl {
  width: 80rem;
}
.reason .list {
  margin-top: 9.2rem;
  width: 118rem;
}
.reason .list li {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
}
.reason .list li figure {
  width: 40rem;
  height: 24rem;
  border-radius: 0.6rem;
}
.reason .list li .txt_wrap {
  width: calc(100% - 40rem - 5rem);
}
.reason .list li .ttl_h3 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: var(--bold);
  color: var(--color-navy);
}
.reason .list li .ttl_h3 small {
  display: block;
  margin-bottom: 2rem;
  font-weight: var(--medium);
  font-family: var(--font-en);
  font-size: 1.4rem;
}
.reason .list li .ttl_h3 small .gr {
  background: var(--color-gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason .list li .ttl_h3 small span:not(.gr) {
  padding-left: 0.8rem;
  font-size: 3rem;
  font-style: italic;
  color: var(--color-navy);
  font-weight: var(--medium);
}
.reason .list li .txt span {
  color: var(--color-yellow);
  font-weight: var(--bold);
}
@media screen and (max-width: 767px) {
  .reason {
    padding-top: 28.6rem;
  }
  .reason .in {
    position: relative;
    width: auto;
    margin: 0;
    background: var(--color-white);
    padding: 6rem 2rem 10rem;
    border-bottom-right-radius: 0.6rem;
  }
  .reason .button {
    position: absolute;
    left: 2rem;
    bottom: 5rem;
  }
  .reason .in::before {
    content: none;
  }
  .reason .main_img {
    position: absolute;
    width: 100%;
    height: 28.6rem;
    top: -28.6rem;
    right: 0;
  }
  .reason .df_ttl {
    width: auto;
  }
  .reason .list {
    margin-top: 4rem;
    width: auto;
  }
  .reason .list li {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 0 4rem;
  }
  .reason .list li figure {
    width: 100%;
    height: 21rem;
  }
  .reason .list li .txt_wrap {
    width: auto;
  }
  .reason .list li .ttl_h3 {
    font-size: 2rem;
  }
}

/* banneres ----------------------------------- */
.banneres {
  padding: 10rem 0 0;
}
.banneres .in {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.banneres .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 24rem;
  width: calc(50% - 2rem);
  background: var(--color-white);
  border-radius: 0.6rem;
  border: 1px solid #c7c4be;
}
.banneres .link_ttl_en {
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: var(--semibold);
  background: var(--color-gr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banneres .recruit {
  width: 100%;
  padding: 8rem 11rem 7rem;
  background: url(../img/common/recruit_bg.jpg) center/cover no-repeat;
  border-radius: 0.6rem;
  color: white;
}
.banneres .recruit .ttl_h2 {
  color: white;
  background-image: url(../img/common/icon_star_wh.png);
}
.banneres .recruit .txt {
  font-size: 2.4rem;
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .banneres {
    padding: 6rem 0 0;
  }
  .banneres .in {
    gap: 1rem;
    flex-direction: column;
  }
  .banneres .link {
    width: 100%;
    height: 14rem;
  }
  .banneres .link_ttl_en {
    font-size: 3rem;
  }
  .banneres .recruit {
    margin: 5rem -2rem 0;
    width: calc(100% + 4rem);
    padding: 11.6rem 2rem;
    border-radius: 0;
    background-image: url(../img/common/recruit_bg_sp.jpg);
  }
  .banneres .recruit .txt {
    font-size: 1.6rem;
    margin-top: 3.6rem;
  }
}

/* news ----------------------------------- */
.news {
  padding: 11.1rem 0 12rem;
}
.news .in {
  display: flex;
  justify-content: space-between;
}
.news .df_ttl {
  color: white;
}
.news .right {
  width: 108rem;
}
.news .text_link {
  display: block;
  width: max-content;
  margin: 4rem 0 0 auto;
  color: white;
}
.news_list {
  width: 100%;
}
.news_card {
  border-top: 1px solid #597a9e;
}
.news_card:last-of-type {
  border-bottom: 1px solid #597a9e;
}
.news_card a {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
}
.news_card .data {
  display: flex;
  align-items: center;
}
.news_card time {
  width: 12rem;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-weight: var(--regular);
  color: white;
  opacity: 0.5;
  letter-spacing: 0.05em;
}
.news_card .cat {
  width: 12rem;
  padding: 0.6rem;
  text-align: center;
  background: var(--color-white);
  border-radius: 0.6rem;
  border: 1px solid #c7c4be;
  font-size: 1.4rem;
  color: var(--color-navy);
  line-height: 1;
}
.news_card .title {
  width: calc(100% - 24rem - 3rem);
  font-size: 1.8rem;
  color: white;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 6rem 0 5rem;
  }
  .news .df_ttl {
    margin-bottom: 3.4rem;
  }
  .news .in {
    flex-direction: column;
  }
  .news .right {
    width: 100%;
  }
  .news .text_link {
    margin-top: 2.4rem;
  }
  .news_card {
    margin: 0 -2rem;
  }
  .news_card a {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.4rem 2rem;
  }
  .news_card time {
    width: 9rem;
    font-size: 1.4rem;
  }
  .news_card .cat {
    width: 10rem;
    font-size: 1.2rem;
  }
  .news_card .title {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* header ----------------------------------- */
header .logo {
  display: block;
  position: absolute;
  top: 2rem;
  left: 3.9rem;
  width: 16rem;
  z-index: 11;
}
header .right {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  width: 100%;
  padding: 0 4rem;
  height: 10rem;
  background: var(--color-navy);
}
header .right nav,
header .right ul,
header .right li,
header .right li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
header .right li a {
  position: relative;
  padding: 0 2rem;
  font-size: 1.6rem;
  color: white;
}
header .right .button {
  margin: 0;
  background: var(--color-white);
  color: var(--color-navy);
  min-width: auto;
  padding: 1.8rem 2.9rem;
}
.fixed_contact {
  position: fixed;
  right: 0;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  width: 20rem;
  height: 10rem;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  background: var(--color-yellow);
  font-size: 1.6rem;
  color: white;
  z-index: 5;
}
.fixed_contact::before {
  content: "";
  width: 2rem;
  height: 1.6rem;
  background: url(../img/common/icon_mail.png) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  header .right li a::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    content: "";
    width: 0;
    height: 0.2rem;
    background: var(--color-yellow);
    transition: .3s;
    transform: translateX(-50%);
  }
  header .right li a:hover::after {
    width: 50%;
  }
  header .hamburger {
    display: none;
  }
  .fixed_buttons {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header .right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-navy);
    display: none;
    padding: 20.2rem 2rem 5rem;
    overflow-y: scroll;
  }
  header .right::-webkit-scrollbar {
    display: none;
  }
  header .right nav, 
  header .right ul, 
  header .right li, 
  header .right li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    text-align: left;
  }
  header .right li a {
    padding: 2rem 0;
  }
  header .logo {
    width: 14rem;
    top: 1.5rem;
    left: 2rem;
  }
  header .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 6rem;
    z-index: 11;
    border-bottom-left-radius: 0.6rem;
    background: var(--color-white);
  }
  header .hamburger::before,
  header .hamburger::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 3rem;
    height: 0.2rem;
    background: var(--color-navy);
    transition: .3s;
  }
  header .hamburger::before {
    margin-top: -1rem;
  }
  header .hamburger::after {
    margin-top: -0.5rem;
  }
  header .hamburger.open::before {
    transform: translate(-50%, -50%) rotate(30deg);
  }
  header .hamburger.open::after {
    margin-top: -1rem;
    transform: translate(-50%, -50%) rotate(-30deg);
  }
  header .hamburger span {
    font-size: 1rem;
    font-family: var(--font-en);
    font-weight: var(--medium);
    color: var(--color-navy);
    letter-spacing: 0.05em;
    padding-top: 1.5rem;
  }
  .fixed_contact {
    right: 1rem;
    bottom: 7rem;
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1rem;
  }
  .fixed_contact::before {
    width: 2rem;
    height: 1.6rem;
  }
  #home .mv .fixed_contact {
    position: absolute;
    bottom: 9rem;
  }
  .fixed_buttons {
    position: fixed;
    width: 100%;
    z-index: 9;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 1px;
    background: white;
    border-top: 1px solid white;
  }
  .fixed_buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    height: 5rem;
    width: calc(60% - 0.5px);
    background: var(--color-yellow);
    font-size: 1.6rem;
    color: white;
  }
  .fixed_buttons a.tel::before {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background: url(../img/common/icon_tel.png) center/contain no-repeat;
  }
  .fixed_buttons a.mail::before {
    content: "";
    width: 2rem;
    height: 1.6rem;
    background: url(../img/common/icon_mail.png) center/contain no-repeat;
  }
}

/* footer ----------------------------------- */
footer {
  padding: 7rem 0;
  background: var(--color-white);
}
footer .in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
footer .in .copy {
  width: 100%;
  text-align: right;
  font-size: 1.4rem;
  font-weight: var(--regular);
  font-family: var(--font-en);
  color: var(--color-navy);
}
footer .left {
  display: flex;
  align-items: flex-end;
  gap: 6rem;
  width: 98rem;
}
footer .left .ttl {
  margin-bottom: 3.6rem;
  font-size: 2rem;
  font-weight: var(--bold);
  color: var(--color-navy);
}
footer .left dl {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0.3rem;
}
footer .left dt {
  font-size: 1.6rem;
  width: 8.6rem;
}
footer .left dd {
  font-size: 1.6rem;
  width: calc(100% - 8.6rem - 0.3rem);
}
footer .left .logo {
  width: 22rem;
  min-width: 22rem;
}
footer .right .list li + li {
  margin-top: 1em;
}
footer .right .list a {
  padding-left: 2rem;
  background: url(../img/common/arrow.png) center left/0.8rem auto no-repeat;
  font-size: 1.6rem;
  color: var(--color-navy);
}
@media screen and (max-width: 767px) {
  footer {
    padding: 5rem 0 4rem;
  }
  footer .in {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin: 0 3rem;
  }
  footer .in .left {
    grid-area: 2 / 1 / 3 / 2;
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 4.8rem;
  }
  footer .in .left .logo {
    width: 18rem;
    min-width: 18rem;
  }
  footer .in .left .ttl {
    margin-bottom: 2.4rem;
    text-align: center;
  }
  footer .in .left dl {
    gap: 1em 0.9rem;
  }
  footer .in .left dt {
    font-size: 1.4rem;
    width: 7rem;
  }
  footer .in .left dd {
    font-size: 1.4rem;
    width: calc(100% - 0.9rem - 7rem);
  }
  footer .in .right {
    grid-area: 1 / 1 / 2 / 2;
  }
  footer .in .right .list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em 2rem;
  }
  footer .right .list li {
    margin: 0 !important;
  }
  footer .right .list a {
    padding-left: 1.3rem;
    font-size: 1.4rem;
  }
  footer .in .copy {
    grid-area: 3 / 1 / 4 / 2;
    text-align: center;
    font-size: 1.2rem;
  }
}


/* 第一段階公開時用スタイル */
.phase1 .reason {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .phase1 .reason {
    padding-bottom: 5rem;
  }
  .phase1 .reason .in {
    padding-bottom: 5rem;
  } 
}





.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
/* アニメーション */
.anime.slideUp,
.anime.slideLeft,
.anime.fadeIn,
.anime.slideLeft.op_5 {
  opacity: 0;
}
.anime.slideUp.active {
  animation: slideUp .5s .05s ease-out forwards;
}
.anime.slideLeft.active {
  animation: slideLeft .5s .05s ease-out forwards;
}
.anime.slideLeft.op_5.active {
  animation: slideLeft_o .5s .05s ease-out forwards;
}
.anime.fadeIn.active {
  animation: fadeIn .5s .2s ease-out forwards;
}
.anime.scaleDown img {
  transform: scale(1.1);
}
.anime.scaleDown.active img {
  animation: img-scale 7s ease-out forwards;
}
span.anime.slideLeft {
  display: inline-block;
}
.anime.img_cr {
  z-index: 2;
  overflow: hidden;
}
.anime.img_cr::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}
.anime.img_cr.orange::after {
  background: #F7A544;
}
.anime.img_cr.blue::after {
  background: #648EF8;
}
.anime.img_cr.green::after {
  background: #79DD2A;
}
.anime.img_cr.red::after {
  background: #F77981;
}
.anime.active.img_cr::after {
  animation: img-cr .7s .5s ease-out forwards;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideLeft_o {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 0.5;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes img-cr {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

