@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Variables
# Mixins
# Elements
# Accessibility
# Media
# Lauout

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Zen+Maru+Gothic:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Zen+Kaku+Gothic+Antique:wght@700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  border-style: none;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*
breakpoint
*/
/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/
/*
テキストリンク　 色
*/
/*
ボタン 背景
*/
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# animation
--------------------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-property: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-property: opacity, transform;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade:nth-child(1) {
  transition-delay: 0.1s;
}
.scroll-fade:nth-child(2) {
  transition-delay: 0.2s;
}
.scroll-fade:nth-child(3) {
  transition-delay: 0.3s;
}
.scroll-fade:nth-child(4) {
  transition-delay: 0.4s;
}
.scroll-fade:nth-child(5) {
  transition-delay: 0.5s;
}
.scroll-fade:nth-child(6) {
  transition-delay: 0.6s;
}
.scroll-fade:nth-child(7) {
  transition-delay: 0.7s;
}
.scroll-fade:nth-child(8) {
  transition-delay: 0.8s;
}
.scroll-fade:nth-child(9) {
  transition-delay: 0.9s;
}
.scroll-fade:nth-child(10) {
  transition-delay: 1s;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/*
html
*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

/*
body
*/
body {
  font-size: 1.6em;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8em;
  text-align: left;
  width: 100%;
  height: 100vh;
  background-color: #EBEADE;
  color: #0A5244;
  position: relative;
  overflow-x: hidden;
}

/*
heading
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  line-height: 1.4em;
  font-weight: 700;
}

/*
list
*/
ul,
ol {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/*
img
*/
img {
  height: auto;
}

/*
table
*/
table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*
forms
*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #000;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #000;
}

select {
  border: 1px solid #000;
}

textarea {
  width: 100%;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #000;
  border-radius: 3px;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #000;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #000;
}

/*
a link
*/
a {
  color: #000;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

p:not(:last-child) {
  margin-bottom: 1.4em;
}

address {
  font-style: normal;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #707070;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #000;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  transition: 0.3s ease;
}

.btn, .header__partner-btn {
  display: inline-block;
  padding: 1.25em 3em;
  background: #EBEADE;
  color: #0A5244;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  border: 2px solid #707070;
  font-size: 1.8rem;
  font-weight: 700;
}
.btn::before, .header__partner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
}
.btn:hover::before, .header__partner-btn:hover::before {
  left: 0;
}
.btn::before, .header__partner-btn::before {
  background: #DE6A21;
  border-radius: 100px;
}
.btn span, .header__partner-btn span {
  position: relative;
  z-index: 1;
}

/*
header
*/
.header {
  padding: 3% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__copy {
  color: #DE6A21;
}
.header__btn-group {
  position: fixed;
  top: 30px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 100;
}
.header__partner-btn {
  background: #DE6A21;
  color: #0A5244;
  line-height: 1.4em;
  text-align: center;
  padding: 25px 30px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid #0A5244;
  z-index: 95;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
body:has(.global-menu.is-active) .header__partner-btn {
  z-index: 89;
  opacity: 0;
  visibility: hidden;
}
.header__partner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  border-radius: 100px;
}
.header__partner-btn span {
  position: relative;
  z-index: 1;
}
.header__partner-btn:hover::before {
  left: 0;
}
.header__menu-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0A5244;
  cursor: pointer;
  z-index: 91;
}
.header__menu-btn-text {
  position: absolute;
  width: 100px;
  height: 100px;
  animation: rotate 10s linear infinite;
}
.header__menu-btn-text img {
  width: 100%;
  height: 100%;
}
.header__menu-btn-icon {
  position: relative;
  width: 25px;
  height: 25px;
}
.header__menu-btn-icon::before, .header__menu-btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0A5244;
  transition: transform 0.3s ease;
}
.header__menu-btn-icon::before {
  transform: translateY(-50%) rotate(90deg);
}
.header__menu-btn-icon::after {
  transform: translateY(-50%);
}
.header__menu-btn-icon.close::before {
  transform: translateY(-50%) rotate(225deg);
}
.header__menu-btn-icon.close::after {
  transform: translateY(-50%) rotate(135deg);
}
.header__menu-btn:hover .header__menu-btn-icon:not(.close)::before {
  transform: translateY(-50%) rotate(225deg);
}
.header__menu-btn:hover .header__menu-btn-icon:not(.close)::after {
  transform: translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 1120px) {
  .header__copy {
    font-size: 2.6rem;
  }
}
/* スマホ向けのスタイル調整 */
@media screen and (max-width: 767px) {
  .header__menu-btn {
    /* スマホではホバー効果を完全に無効化 */
  }
  .header__menu-btn:hover .header__menu-btn-icon:not(.close)::before, .header__menu-btn:hover .header__menu-btn-icon:not(.close)::after {
    /* スマホではホバー時の変形を起こさない */
    transform: translateY(-50%) !important;
  }
  .header__menu-btn:hover .header__menu-btn-icon:not(.close)::before {
    transform: translateY(-50%) rotate(90deg) !important;
  }
}
/*
TIME タグ
*/
.updated:not(.published) {
  display: none;
}

/*
インスタグラムアイコン
*/
.instagram {
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #0A5244;
  transition: color 0.3s ease;
}
.instagram:hover {
  color: #DE6A21;
}
.instagram svg {
  width: 100%;
  height: 100%;
}

/*
global-menu
*/
.global-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #DEE5DE;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
  padding: 15%;
}
.global-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.global-menu__logo {
  width: 35%;
  min-width: 420px;
  max-width: 640px;
  height: auto;
  position: absolute;
  top: -140px;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}
.global-menu__logo img {
  width: 100%;
  height: 100%;
}
.is-active .global-menu__logo {
  opacity: 1;
  transform: translateY(0);
}
.global-menu__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.global-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.global-menu__list li {
  opacity: 0;
  transform: translateY(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-property: opacity, transform;
}
.global-menu__list li.visible {
  opacity: 1;
  transform: translateY(0);
}
.is-active .global-menu__list li {
  opacity: 1;
  transform: translateY(0);
}
.global-menu__list li a {
  color: #0A5244;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  background: linear-gradient(to right, #DE6A21 50%, #0A5244 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease;
  padding: 0.7em;
  display: inline-block;
}
.global-menu__list li a:hover {
  background-position: left bottom;
}
.global-menu__info {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: left;
  color: #0A5244;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.6s;
}
.is-active .global-menu__info {
  opacity: 1;
  transform: translateY(0);
}
.global-menu__info .address {
  margin-bottom: 10px;
}
.global-menu__info .footer-links {
  font-size: 12px;
  margin-top: 20px;
}
.global-menu__info .footer-links a {
  color: #0A5244;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  background: linear-gradient(to right, #DE6A21 50%, #0A5244 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease;
}
.global-menu__info .footer-links a:hover {
  background-position: left bottom;
}
.global-menu__info .footer-links a:first-child {
  margin-right: 5px;
}
.global-menu__info .footer-links a:first-child::after {
  content: "|";
  margin-left: 5px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #0A5244;
}
.global-menu__sns {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.7s;
}
.is-active .global-menu__sns {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  width: 100%;
  padding: 8% 0 0 0;
  position: relative;
}
.hero__image {
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.hero__logo {
  position: absolute;
  top: 2.5%;
  left: 10%;
  width: 40vw;
  z-index: 2;
}
.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__image {
  position: relative;
  z-index: 1;
}

.illust-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-image: url("../img/illust-bottom.webp");
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 1400px;
  z-index: 50;
  pointer-events: none;
}

/*
container
*/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.container h2 {
  color: #DE6A21;
  margin-bottom: 1.8em;
}
.container h2::before {
  content: attr(date-tag);
  display: inline-block;
  padding: 0.4em 0.9em 0.3em 1em;
  border: 1px solid #DE6A21;
  border-radius: 20px;
  font-size: 1.6rem;
  font-family: "Nunito", serif;
  line-height: 1em;
  margin-bottom: 1.5em;
}
.container h2 span {
  display: block;
  font-size: 6rem;
  line-height: 1.4em;
}

/*
topics
*/
.topics {
  background-color: #fff;
}
.topics__title {
  text-align: center;
}
.topics__list {
  display: flex;
  justify-content: center;
  gap: 5%;
}
.topics__item {
  width: 100%;
  max-width: 320px;
  color: #0A5244;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.topics__item-image {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 20px;
  border: 2px solid #0A5244;
  overflow: hidden;
}
.topics__item-image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.topics__item-text {
  font-size: 2.2rem;
  font-weight: bold;
}
.topics__item:hover {
  opacity: 0.7;
  color: #DE6A21;
}

.about {
  padding: 15% 0;
  border-bottom: 4px solid #0A5244;
  position: relative;
}
.about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/about-photo.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .inner {
  padding-right: 5%;
  width: 50%;
}

.about__text {
  font-size: 1.8rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  grid-column-gap: 2%;
  grid-row-gap: 5%;
}
.services .service-card-1 {
  grid-area: 1/1/2/4;
}
.services .service-card-2 {
  grid-area: 2/1/3/2;
}
.services .service-card-3 {
  grid-area: 2/2/3/3;
}
.services .service-card-4 {
  grid-area: 2/3/3/4;
}
.services h3 {
  font-size: 4rem;
  margin-bottom: 1em;
}
.services .service-card__shoulder {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.5em;
}
.services__title {
  text-align: center;
}

.service-card {
  border: 2px solid #0A5244;
  border-radius: 30px;
  background-color: #fff;
}
.service-card p {
  margin-bottom: 0;
}
.service-card img {
  border-radius: 25px;
  width: 100%;
  height: auto;
}
.service-card-1 {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
  padding: 50px;
}
.service-card-1::before {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: 50px;
  background-image: url("../img/01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 80px;
}
.service-card-1 figure {
  flex-basis: 45%;
}
.service-card-1 .inner {
  flex-basis: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.service-card-1 .inner::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../img/illust-food-01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  z-index: -1;
}
.service-card-2 {
  position: relative;
  z-index: 1;
}
.service-card-2::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 40px;
  background-image: url("../img/02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 80px;
}
.service-card-2 .service-card__shoulder {
  position: relative;
}
.service-card-2 .service-card__shoulder::after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
  background-image: url("../img/illust-food-02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  z-index: -1;
}
.service-card-3 {
  position: relative;
  z-index: 1;
}
.service-card-3::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 40px;
  background-image: url("../img/03.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 145px;
  height: 80px;
}
.service-card-3 .service-card__shoulder {
  position: relative;
}
.service-card-3 .service-card__shoulder::after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  right: 0;
  background-image: url("../img/illust-food-03.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 150px;
  z-index: -1;
}
.service-card-4 {
  position: relative;
  z-index: 1;
}
.service-card-4::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 40px;
  background-image: url("../img/04.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 145px;
  height: 80px;
}
.service-card-4 .service-card__shoulder {
  position: relative;
}
.service-card-4 .service-card__shoulder::after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  right: 0;
  background-image: url("../img/illust-food-04.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 110px;
  height: 150px;
  z-index: -1;
}
.service-card-2, .service-card-3, .service-card-4 {
  padding: 70px 40px 40px 40px;
}
.service-card-2 figure, .service-card-3 figure, .service-card-4 figure {
  margin-bottom: 2.5em;
}
.service-card__link {
  padding-top: 50px;
  width: 100%;
}
.service-card__link a {
  width: 100%;
  text-align: center;
  line-height: 1.4em;
}
.service-card__bottom {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #0A5244;
}
.service-card__bottom h4 {
  margin-bottom: 10px;
}
.service-card__bottom h4:not(:first-of-type) {
  margin-top: 2em;
}
.service-card__bottom p {
  font-size: 1.2rem;
  line-height: 1.8em;
}
.service-card__bottom a {
  display: block;
  margin-top: 1em;
}

.photo {
  border-top: 4px solid #0A5244;
  border-bottom: 4px solid #0A5244;
  padding: 0;
  margin-top: 5%;
}
.photo__item {
  display: flex;
}
.photo__item img {
  width: 50%;
}

.movie {
  padding: 0;
  border-bottom: 4px solid #0A5244;
}
.movie .container {
  max-width: 1680px;
  padding: 0;
}
.movie__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.staff {
  padding-bottom: 0;
}
.staff-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 13%;
}
.staff-card__image {
  width: 33%;
  position: absolute;
  top: -10%;
  left: 0;
}
.staff-card__image img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  border: 2px solid #0A5244;
}
.staff-card__content {
  flex-basis: 76%;
  background-color: #fff;
  padding: 8% 13%;
  border-radius: 300px;
  border: 2px solid #0A5244;
}
.staff-card__content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.2em;
  padding-bottom: 1.2em;
  border-bottom: 2px solid #0A5244;
}
.staff-card__content p {
  margin-bottom: 2em;
}
.staff-card__content a {
  display: block;
  margin-top: 1em;
  width: 100%;
  text-align: center;
}

.news {
  overflow: hidden;
}
.news .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news__title {
  flex-basis: 30%;
}
.news__grid {
  flex-basis: 70%;
  display: grid;
  grid-template-columns: auto;
  gap: 70px;
}
.news-card {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
  position: relative;
}
.news-card__date {
  font-size: 1.8rem;
  color: #DE6A21;
  flex-basis: 15%;
}
.news-card h3 {
  font-size: 1.6rem;
  color: #0A5244;
  font-weight: 400;
  flex-basis: 85%;
  line-height: 1.8em;
}
.news-card::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0A5244;
  width: 100vw;
  height: 2px;
}
.news__more {
  flex-basis: 100%;
  margin-top: 5%;
}
.news__more a {
  width: 100%;
  max-width: 560px;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
}

.guide {
  padding: 0;
  border-top: 2px solid #0A5244;
  border-bottom: 2px solid #0A5244;
}
.guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.guide-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.guide-card:not(:last-child) {
  border-right: 1px solid #0A5244;
}
.guide-card h3 {
  color: #DE6A21;
  font-size: 3rem;
  line-height: 1.4em;
  margin-bottom: 1em;
  padding: 10% 10% 0 10%;
}
.guide-card h3 span {
  display: block;
  font-size: 2.5rem;
  line-height: 1.4em;
}
.guide-card p {
  font-size: 1.6rem;
  line-height: 1.8em;
  margin-bottom: 3em;
  flex-grow: 1;
  padding: 0 10%;
}
.guide-card .btn, .guide-card .header__partner-btn {
  width: 80%;
  text-align: center;
  margin: 0 auto 10% auto;
}

.recruit {
  background-color: #DE6A21;
  color: #0A5244;
}
.recruit .container {
  display: flex;
}
.recruit .container .recruit__title {
  color: #0A5244;
  flex-basis: 40%;
  margin-top: -2.5em;
}
.recruit .container .recruit__title::before {
  border-color: #0A5244;
}
.recruit .container .recruit__text {
  margin-bottom: 3.6em;
}
.recruit__grid {
  flex-basis: 60%;
}
.recruit__grid h3 {
  font-size: 3rem;
  margin-bottom: 1.4em;
}
.recruit .btn--white {
  display: block;
  background-color: #fff;
  color: #0A5244;
  border-color: #0A5244;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.recruit .btn--white::before {
  background-color: #EBEADE;
}

.contact {
  text-align: center;
}
.contact__title {
  margin-bottom: 2em;
}
.contact__grid {
  padding-top: 5%;
}
.contact .btn, .contact .header__partner-btn {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2em auto;
  background-color: #fff;
}
.contact .btn:first-of-type, .contact .header__partner-btn:first-of-type {
  margin-top: 2em;
}

.footer {
  padding: 5% 0 13% 0;
  background-color: #fff;
  border-top: 2px solid #0A5244;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__logo {
  width: 40%;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__sns {
  margin-bottom: 30px;
}
.footer__address {
  font-style: normal;
  margin-bottom: 5px;
}
.footer__business-hours {
  margin-bottom: 20px;
}
.footer__links {
  margin-bottom: 20px;
}
.footer__links a {
  color: #0A5244;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  background: linear-gradient(to right, #DE6A21 50%, #0A5244 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease;
}
.footer__links a:hover {
  background-position: left bottom;
}
.footer__links a:first-child {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.footer__copyright {
  display: block;
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# SP
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /*
  SP visible
  */
  .isPC {
    display: none;
  }
  .isSP {
    display: inline-block;
  }
  section {
    padding: 20% 0;
  }
  .header__partner-btn {
    font-size: 1.5rem;
    padding: 20px 20px 23px 20px;
  }
  .btn, .header__partner-btn {
    padding: 1em;
    line-height: 1.2em;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .global-menu {
    padding: 20px 20px 150px 20px;
    height: 100vh;
    overflow-y: auto;
  }
  .global-menu__logo {
    width: 100%;
    min-width: auto;
    top: auto;
    left: auto;
    padding: 35% 0 10% 0;
    position: relative;
  }
  .global-menu__list li a {
    padding: 0.75em 1em 0.75em 0;
  }
  .global-menu__inner {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .global-menu__company {
    margin-top: 50px;
  }
  .global-menu__sns {
    position: relative;
    padding-top: 20vw;
  }
  .global-menu__sns .instagram {
    display: block;
    width: 62px;
    height: 82px;
    padding: 20px 20px 20px 0;
  }
  .global-menu__info {
    position: relative;
    margin-top: inherit;
    padding-top: 15vw;
    padding-bottom: 20px;
  }
  .illust-bottom {
    height: 100px;
    background-size: 150%;
  }
  /*
  container
  */
  .container h2 span {
    font-size: 2.8rem;
    line-height: 1.4em;
  }
  .header {
    padding: 10% 5% 20% 5%;
  }
  .header__btn-group {
    top: 1.8em;
    right: auto;
    left: auto;
    width: 90%;
    justify-content: space-between;
  }
  .header__copy {
    padding-top: clamp(80px, 30%, 140px);
    font-size: 2.2rem;
    line-height: 1.4em;
  }
  .header__menu-btn {
    margin-right: 7%;
  }
  .hero__logo {
    left: 5%;
    top: -10%;
    width: 80%;
  }
  .topics__list {
    flex-direction: column;
  }
  .topics__item {
    width: 100%;
    max-width: none;
  }
  .topics__item-image {
    margin-bottom: 1em;
  }
  .topics__item-text {
    font-size: 1.6rem;
  }
  .topics__item:not(:last-child) {
    margin-bottom: 4em;
  }
  .about {
    padding-top: 30vw;
    padding-bottom: 160vw;
  }
  .about::before {
    background-position: 0 100%;
    background-size: 100%;
    width: 100%;
  }
  .about .inner {
    width: 100%;
    padding: 0;
  }
  .services .services__title {
    margin-bottom: 100px;
  }
  .services h3 {
    font-size: 2.5rem;
  }
  .services__grid {
    display: block;
  }
  .service-card {
    margin-top: 20vw;
  }
  .service-card .inner {
    padding-top: 10vw;
  }
  .service-card .inner::before {
    top: 5%;
    right: 0;
    width: 150px;
    height: 150px;
    z-index: -1;
  }
  .service-card .service-card__link {
    padding-bottom: 50px;
  }
  .service-card .service-card__link span {
    font-size: 1.4rem;
  }
  .service-card .service-card__link small {
    font-size: 1rem;
  }
  .service-card .service-card__shoulder {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .service-card .service-card__bottom {
    padding-bottom: 50px;
  }
  .service-card-1 {
    flex-direction: column;
    padding: 70px 20px 20px 20px;
  }
  .service-card-1::before {
    left: 10px;
  }
  .service-card-2, .service-card-3, .service-card-4 {
    padding: 110px 20px 20px 20px;
  }
  .service-card-2::before, .service-card-3::before, .service-card-4::before {
    left: 10px;
  }
  .photo__item {
    flex-direction: column;
  }
  .photo__item img {
    width: 100%;
  }
  .staff-card {
    display: block;
  }
  .staff-card__image {
    width: 100%;
    position: relative;
    top: 0;
  }
  .staff-card__content {
    margin-top: -20%;
    padding: 40% 5%;
  }
  .staff-card__content h3 {
    font-size: 2.2rem;
  }
  .news .container {
    flex-direction: column;
  }
  .news-card {
    flex-direction: column;
  }
  .news-card::before {
    width: 100%;
  }
  .news__more a {
    display: block;
    max-width: 800px;
    margin: 0 auto;
  }
  .guide__grid {
    grid-template-columns: auto;
  }
  .guide-card {
    padding-bottom: 10%;
  }
  .guide-card h3 {
    font-size: 1.6rem;
  }
  .guide-card h3 span {
    font-size: 1.6rem;
  }
  .recruit .container {
    flex-direction: column;
  }
  .recruit .container .recruit__title {
    margin-top: 0;
    margin-bottom: 10%;
  }
  .recruit__grid {
    font-size: 1.6rem;
  }
  .recruit__grid h3 {
    font-size: 2rem;
  }
  .contact .btn, .contact .header__partner-btn {
    margin-bottom: 1em;
    letter-spacing: 0;
  }
  .footer {
    padding: 20% 0 35% 0;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__info {
    display: block;
    order: 2;
  }
  .footer__logo {
    width: 100%;
    order: 1;
    margin-bottom: 13%;
  }
}
/*--------------------------------------------------------------
# TB
--------------------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 979px) {
  /*
  SP visible
  */
  .isPC {
    display: none;
  }
  .isSP {
    display: inline-block;
  }
  section {
    padding: 20% 0;
  }
  .header__copy {
    padding-top: 20%;
  }
  .header__partner-btn {
    font-size: 1.5rem;
    padding: 20px 20px 23px 20px;
    width: 230px;
  }
  .header__menu-btn {
    margin-right: 3%;
  }
  .hero {
    padding-top: 12%;
  }
  .hero__logo {
    left: 5%;
    top: 1%;
    width: 60%;
  }
  .global-menu {
    padding: 20px;
    height: 100vh;
    overflow-y: auto;
  }
  .global-menu__logo {
    width: 100%;
    top: auto;
    left: auto;
    padding: 20% 0 10% 0;
    position: relative;
  }
  .global-menu__list li a {
    display: block;
    padding: 0.75em 1em 0.75em 0;
  }
  .global-menu__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .global-menu__company {
    margin-top: 50px;
  }
  .global-menu__sns {
    position: relative;
    padding-top: 10vw;
  }
  .global-menu__sns .instagram {
    display: block;
    width: 62px;
    height: 82px;
    padding: 20px 20px 20px 0;
  }
  .global-menu__info {
    position: relative;
    margin-top: auto;
    padding-top: 10vw;
    padding-bottom: 20px;
  }
  .about {
    padding-top: 20vw;
    padding-bottom: 160vw;
  }
  .about::before {
    background-position: 0 100%;
    background-size: 100%;
    width: 100%;
  }
  .about .inner {
    width: 100%;
    padding: 0;
  }
  .services .services__title {
    margin-bottom: 100px;
  }
  .services__grid {
    display: block;
  }
  .service-card {
    margin-top: 10vw;
  }
  .service-card-1 .inner::before {
    top: -5%;
    right: -5%;
    z-index: -1;
  }
  .service-card-2::after {
    top: 40px;
    right: 0;
    width: 130px;
    height: 130px;
    z-index: -1;
  }
  .service-card-3::after {
    top: 60px;
    right: 10px;
    width: 110px;
    height: 110px;
    z-index: -1;
  }
  .service-card-4::after {
    top: 50px;
    right: 10px;
    width: 110px;
    height: 110px;
    z-index: -1;
  }
  .news .container {
    flex-direction: column;
  }
  .news-card {
    flex-direction: column;
  }
  .news-card::before {
    width: 100%;
  }
  .news__more a {
    display: block;
    max-width: 800px;
    margin: 0 auto;
  }
  .recruit {
    padding-top: 18%;
  }
  .recruit .container {
    flex-direction: column;
  }
  .recruit .container .recruit__title {
    margin-top: 0;
    margin-bottom: 10%;
  }
}
/*--------------------------------------------------------------
# PC
--------------------------------------------------------------*/
@media screen and (min-width: 980px) {
  /*
  PC visible
  */
  .isPC {
    display: inline-block;
  }
  .isSP {
    display: none;
  }
  section {
    padding: 10% 0;
  }
  .service-card-1 .inner::before {
    top: -2%;
    right: -5%;
  }
  .global-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-y: auto;
    padding: 5%;
  }
  .global-menu__inner {
    margin-top: 100px;
    min-width: 900px;
    max-width: 1440px;
    min-height: 600px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .global-menu__company {
    margin-top: 50px;
  }
  .global-menu__sns .instagram {
    display: block;
    width: 62px;
    height: 62px;
    padding: 1em;
  }
}/*# sourceMappingURL=style.css.map */