@charset "UTF-8";
/** -------------------------------- **
	@mixin
*** ----------------------------------------------------------------- ***/
:root {
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --font-default: "Zen Maru Gothic", serif;
  --header-height: 90px;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #3381c5;
  --color-green: #208D61;
  --color-bgbase: #F8F6ED;
  --shadow-default: 0 3px 6px rgba(0, 0, 0, 0.16);
  --easing-cubic1: cubic-bezier(0, 0, 0, 1);
}
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-repeat: no-repeat;
  background-origin: border-box;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
body {
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  margin: 0;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizespeed;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object, div) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  fill: currentcolor;
  stroke: none;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  fill: none;
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentcolor;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
  list-style-type: "";
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  -ms-touch-action: manipulation;
  cursor: pointer;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* 共通 */
/*---------------------------------------------------*/
html {
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-default);
  overflow-wrap: anywhere;
  scroll-padding-top: 100px;
}

body {
  color: var(--color-txtbase);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  position: relative;
  background-color: var(--color-bg);
  line-height: 1.7777777778;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 2;
}

.sub-font {
  font-family: "Barlow", sans-serif;
}

/* a link
--------------------------------------------- */
a {
  -webkit-transition: color 0.3s ease-out;
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease-out;
}
a:hover {
  color: var(--color-hover-link);
  text-decoration: none;
}

/* リンクを無効にする */
.disabled-link {
  color: #333;
  pointer-events: none;
}
.disabled-link:hover {
  color: #333;
}

.tel-link {
  color: var(--color-black);
  text-decoration: none;
  pointer-events: none;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: sticky;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  height: var(--header-height);
  gap: 20px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  background-color: var(--color-bgbase);
}
.header__gnav-buttom {
  display: block;
  position: relative;
  width: 28px;
  height: 30px;
  background-color: var(--color-bgbase);
}
.header__gnav-buttom span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #707070;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__gnav-buttom-line-top {
  top: 0;
}
.header__gnav-buttom-line-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__gnav-buttom-line-bottom {
  bottom: 0;
}
.header__gnav-buttom[aria-expanded=true] .header__gnav-buttom-line-top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header__gnav-buttom[aria-expanded=true] .header__gnav-buttom-line-center {
  opacity: 0;
}
.header__gnav-buttom[aria-expanded=true] .header__gnav-buttom-line-bottom {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.header__menu-link {
  font-weight: 700;
  font-size: 15px;
}
.header__menu-link:hover {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.recruit .recruit-header {
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  margin-top: -100px;
  transition: background-color 0.3s ease;
}
.recruit .recruit-header.is-scrolled {
  background-color: #FFF;
}
.recruit .recruit-header__gnav-buttom {
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.recruit .recruit-header__gnav-buttom.is-scrolled {
  background-color: #FFF;
}
.recruit .recruit-header--bg-recruit {
  background-color: #FFF;
}

.cosmowine-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: sticky;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: var(--header-height);
  gap: 20px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  -webkit-padding-end: 10%;
          padding-inline-end: 10%;
  background-color: #FFF;
}
.cosmowine-header__gnav-buttom {
  display: block;
  position: relative;
  width: 28px;
  height: 30px;
  background-color: #FFF;
}
.cosmowine-header__gnav-buttom span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #707070;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.cosmowine-header__gnav-buttom-line-top {
  top: 0;
}
.cosmowine-header__gnav-buttom-line-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cosmowine-header__gnav-buttom-line-bottom {
  bottom: 0;
}
.cosmowine-header__gnav-buttom[aria-expanded=true] .cosmowine-header__gnav-buttom-line-top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.cosmowine-header__gnav-buttom[aria-expanded=true] .cosmowine-header__gnav-buttom-line-center {
  opacity: 0;
}
.cosmowine-header__gnav-buttom[aria-expanded=true] .cosmowine-header__gnav-buttom-line-bottom {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}
.cosmowine-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
}
.cosmowine-header__menu-link {
  font-weight: 700;
  font-size: 15px;
}
.cosmowine-header__menu-link:hover {
  color: #10B7B1;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.gnav {
  display: block;
  z-index: 5;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  overflow: auto;
  background-color: var(--color-bgbase);
  -webkit-transition: opacity 0.4s var(--easing-cubic1);
  transition: opacity 0.4s var(--easing-cubic1);
}
.gnav[aria-hidden=true] {
  opacity: 0;
  pointer-events: none;
}
.gnav[aria-hidden=false] {
  opacity: 1;
  pointer-events: all;
}
.gnav__container {
  margin: 30px auto 0;
}
.gnav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 30px 25px 0 25px;
  gap: 30px;
}
.gnav__menu-link {
  font-weight: 700;
  font-size: 18px;
}
.gnav__menu-link:hover {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.gnav__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 25px 0 25px;
  padding-top: 20px;
  gap: 50px;
  border-top: 1px solid #C7C7C7;
}
.gnav__submenu-item {
  position: relative;
}
.gnav__submenu-item:nth-child(odd)::after {
  position: absolute;
  top: 50%;
  right: -25px;
  bottom: 50%;
  width: 1px;
  height: 80%;
  margin: auto;
  background-color: #1A1A1A;
  content: "";
}
.gnav__submenu-link {
  font-weight: 400;
  font-size: 15px;
}
.gnav__submenu-link:hover {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.gnav__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
  padding-bottom: 100px;
}

.recruit .gnav {
  background-color: #FFF;
}

.footer {
  margin-top: 200px;
}
.footer__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 80px;
}
.footer__banner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 40px;
}
.footer__banner-box::after {
  position: absolute;
  bottom: -40px;
  width: 100%;
  border-bottom: 1px solid #D9CAAE;
  content: "";
}
.footer__orginfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
  padding: 0 20px;
  gap: 10px;
}
.footer__orginfo-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer__orginfo-desc-time-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.footer__orginfo-desc-business-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
}
.footer__orginfo-desc-business-hours-time {
  color: var(--color-green);
  font-size: 26px;
}
.footer__orginfo-desc-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 26px;
}
.footer__orginfo-desc-tel-number {
  color: var(--color-green);
  font-size: 34px;
}
.footer__orginfo-desc-address {
  font-weight: 400;
  font-size: 14px;
}
.footer__orginfo-contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--color-green);
  border-radius: 5px;
  background-color: var(--color-green);
  -webkit-transition: background-color 0.3s ease-out;
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 70px;
  transition: background-color 0.3s ease-out;
}
.footer__orginfo-contact-button:hover {
  background-color: #FFF;
}
.footer__orginfo-contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-weight: 500;
  font-size: 22px;
  -webkit-transition: color 0.3s ease-out;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease-out;
}
.footer__orginfo-contact-link:hover {
  color: var(--color-green);
}
.footer__orginfo-contact-link::before {
  position: absolute;
  left: 40px;
  content: "";
  -webkit-mask-image: url("../images/common/arrow-01.svg");
          mask-image: url("../images/common/arrow-01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #FFF;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  transition: background-color 0.3s ease-out;
}
.footer__orginfo-contact-link:hover::before {
  background-color: var(--color-green);
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  margin: 30px auto 0;
  padding: 20px;
  border-top: 1px solid #D9CAAE;
}
.footer__inner-copyright {
  font-weight: 400;
  font-size: 15px;
}
.footer__inner-submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer__inner-submenu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner-submenu-item:first-child::after {
  position: absolute;
  right: -15px;
  height: 80%;
  border-right: 1px solid #333;
  content: "";
}
.footer__inner-submenu-link {
  font-weight: 400;
  font-size: 13px;
}
.footer__inner-submenu-link:hover {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.footer__end-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  position: fixed;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 10px 20px 10px;
  gap: 20px;
  background-color: var(--color-bgbase);
}
.footer__end-menu-time-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 5px;
}
.footer__end-menu-business-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-weight: 500;
  font-size: 13px;
}
.footer__end-menu-business-hours-time {
  color: var(--color-green);
  font-weight: 500;
  font-size: 15px;
}
.footer__end-menu-tel-number {
  color: var(--color-green);
  font-weight: 500;
  font-size: 23px;
}
.footer__end-menu-contact {
  position: relative;
}
.footer__end-menu-contact::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: -10px;
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: #A1B7AE;
  content: "";
}
.footer__end-menu-contact::after {
  position: absolute;
  top: 50%;
  right: -10px;
  bottom: 50%;
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: #A1B7AE;
  content: "";
}
.footer__end-menu-contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__end-menu-contact-text {
  color: var(--color-green);
  font-weight: 500;
  font-size: 13px;
}
.recruit .footer__end-menu {
  display: none;
}

.cosmowine-footer {
  margin-top: 200px;
}
.cosmowine-footer__catchphrase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 26px;
}
.cosmowine-footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  color: #BF4ABF;
  font-weight: 500;
  font-size: 30px;
}
.cosmowine-footer__company-english {
  font-size: 60px;
}
.cosmowine-footer__orginfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  gap: 30px;
}
.cosmowine-footer__orginfo-business-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine-footer__orginfo-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine-footer__orginfo-tel-number {
  color: #10B7B1;
  font-size: 36px;
}
.cosmowine-footer__orginfo-address {
  font-weight: 500;
  font-size: 16px;
}
.cosmowine-footer__contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #10B7B1;
  background-color: #10B7B1;
  -webkit-transition: background-color 0.3s ease-out;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  border-radius: 36px;
  transition: background-color 0.3s ease-out;
}
.cosmowine-footer__contact-button:hover {
  background-color: #FFF;
}
.cosmowine-footer__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: color 0.3s ease-out;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  transition: color 0.3s ease-out;
}
.cosmowine-footer__contact-link:hover {
  color: #10B7B1;
}
.cosmowine-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
}
.cosmowine-footer__end-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  position: fixed;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 10px 20px 10px;
  gap: 20px;
  background-color: var(--color-bgbase);
}
.cosmowine-footer__end-menu-time-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 5px;
}
.cosmowine-footer__end-menu-business-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-weight: 500;
  font-size: 13px;
}
.cosmowine-footer__end-menu-business-hours-time {
  color: var(--color-green);
  font-weight: 500;
  font-size: 15px;
}
.cosmowine-footer__end-menu-tel-number {
  color: var(--color-green);
  font-weight: 500;
  font-size: 23px;
}
.cosmowine-footer__end-menu-contact {
  position: relative;
}
.cosmowine-footer__end-menu-contact::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: -10px;
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: #A1B7AE;
  content: "";
}
.cosmowine-footer__end-menu-contact::after {
  position: absolute;
  top: 50%;
  right: -10px;
  bottom: 50%;
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: #A1B7AE;
  content: "";
}
.cosmowine-footer__end-menu-contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cosmowine-footer__end-menu-contact-text {
  color: var(--color-green);
  font-weight: 500;
  font-size: 13px;
}

.body-wrap {
  background-color: var(--color-bgbase);
}

.recruit .body-wrap {
  background-color: #FFF;
}

body[class*=cosmowine] .body-wrap {
  background-color: #FFF;
}

.main__body .home-section-wrap:first-of-type {
  margin: 0 auto;
}
.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1050px;
  margin: 70px auto 0;
  gap: 30px;
}
.main__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.main__contents .next-content:first-of-type {
  margin-top: 60px;
}
.main__aside {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
}

.next-content {
  margin-top: 120px;
}

/*
 * [note] ボタンパーツ
 * ------------------------------------------------ */
.details-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 30px;
}
.details-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
  font-weight: 400;
  font-size: 20px;
}
.details-link::before {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("../images/common/details-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.details-link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #208D61;
  content: "";
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.details-link:hover::after {
  width: 100%;
}

.recruit__details-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #30C467;
  border-radius: 35px;
  -webkit-transition: background-color 0.3s ease-out;
  max-width: 300px;
  height: 60px;
  margin: 20px auto 0;
  transition: background-color 0.3s ease-out;
}
.recruit__details-button:hover {
  background-color: #30C467;
}
.recruit__details-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #30C467;
  font-weight: 500;
  font-size: 22px;
  -webkit-transition: color 0.3s ease-out;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease-out;
}
.recruit__details-link::before {
  position: absolute;
  left: 80px;
  content: "";
  -webkit-mask-image: url("../images/common/arrow-01.svg");
          mask-image: url("../images/common/arrow-01.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #30C467;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 14px;
  height: 14px;
  transition: background-color 0.3s ease-out;
}
.recruit__details-link:hover {
  color: #FFF;
}
.recruit__details-link:hover::before {
  background-color: #FFF;
}

.cosmowine__recruit-two-columu--button {
  width: 100%;
  max-width: 300px;
  margin: 50px auto 0 20px;
}
.cosmowine__recruit-two-columu--button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #FFF;
  border-radius: 35px;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  width: 100%;
  padding: 15px;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.cosmowine__recruit-two-columu--button-link:hover {
  background-color: #FFF;
  color: #BF4ABF;
}
.cosmowine__recruit-two-columu--button-link:hover::after {
  background-color: #BF4ABF;
}
.cosmowine__recruit-two-columu--button-link::after {
  position: absolute;
  right: 60px;
  content: "";
  -webkit-mask-image: url("../images/cosmowine/external-link-icon.svg");
          mask-image: url("../images/cosmowine/external-link-icon.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #FFF;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 18px;
  height: 18px;
  transition: background-color 0.3s ease-out;
}
.cosmowine__news-details-button {
  width: 100%;
  max-width: 300px;
  margin: 50px auto 0;
}
.cosmowine__news-details-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #11B7B1;
  border-radius: 35px;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  width: 100%;
  padding: 10px;
  color: #11B7B1;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.cosmowine__news-details-button-link:hover {
  background-color: #11B7B1;
  color: #FFF;
}
.cosmowine__instagram-button {
  width: 100%;
  max-width: 360px;
}
.cosmowine__instagram-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  width: 100%;
  padding: 10px 35px 15px 10px;
  border: 1px solid #BF4ABF;
  border-radius: 8px;
  background-color: #BF4ABF;
  color: #FFF;
  font-weight: 500;
  font-size: 22px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.cosmowine__instagram-button-link:hover {
  background-color: #FFF;
  color: #BF4ABF;
}
.cosmowine__instagram-button-link:hover::after {
  background-color: #BF4ABF;
}
.cosmowine__instagram-button-link::after {
  position: absolute;
  right: 45px;
  content: "";
  -webkit-mask-image: url("../images/common/instagram-icon.svg");
          mask-image: url("../images/common/instagram-icon.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #FFF;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 22px;
  height: 22px;
  margin-top: 5px;
  transition: background-color 0.3s ease-out;
}

/*
 * [note] タイトル・テキストパーツ
 * ------------------------------------------------ */
.section-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-title-group::after {
  position: absolute;
  bottom: -10px;
  width: 50px;
  border-bottom: 3px solid #1F8D61;
  content: "";
}

.section-title {
  font-weight: 400;
  font-size: 28px;
}

.content-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  padding-left: 30px;
}
.content-title-group::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #1F8D61;
  content: "";
}

.content-title {
  font-weight: 400;
  font-size: 26px;
}

.content-next-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-next-title {
  font-weight: 400;
  font-size: 22px;
}

.content-title-group + .content-next-title-group {
  margin-top: -30px;
}

.content-title-group + .text-area {
  margin-top: -30px;
}

.text-area-box {
  display: inline-block;
  margin: 10px 0;
}

.text-area {
  font-weight: 400;
  font-size: 16px;
  line-height: 2.2;
}

/*
 * [note] 表組パーツ
 * ------------------------------------------------ */
.two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.two-columu__left {
  width: 50%;
}
.two-columu__right {
  width: 50%;
}
.two-columu__right img {
  margin: 0 auto;
  border-radius: 20px;
}
.two-columu__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
}
.two-columu__text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}
.two-columu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 30px 40px;
}
.two-columu__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 320px;
  padding: 20px 25px 15px 25px;
  border: 1px solid #208D61;
  border-radius: 10px;
}
.two-columu__list-item-title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
}
.two-columu__list-item-text {
  margin-top: 25px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
}

.top-two-columu__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
}

.exchange-columu {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.company-profile {
  overflow: auto;
}
.company-profile__table {
  width: 100%;
  min-width: 650px;
}
.company-profile__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px;
  gap: 50px;
  border-bottom: 1px solid #D8CFCF;
}
.company-profile__box:first-child {
  border-top: 1px solid #D8CFCF;
}
.company-profile__th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-width: 130px;
  max-width: 140px;
  font-size: 20px;
  text-align: start;
}
.company-profile__td {
  font-size: 20px;
}
.company-profile__td-note {
  font-size: 16px;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 50px auto 0;
  padding: 0;
  gap: 20px;
  list-style: none;
  /* 質問部分のスタイル */
  /* 回答部分のスタイル */
  /* テキスト部分のスタイル */
}
.accordion__item {
  overflow: hidden;
  border: 2px solid #1F8D61;
  border-radius: 10px;
}
.accordion__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  padding: 25px 20px 25px 30px;
  transition: opacity 0.3s ease;
}
.accordion__question:hover {
  opacity: 0.5;
}
.accordion__question[aria-expanded=true] .accordion__button::before {
  left: auto;
  width: 20px;
  background-color: #333;
}
.accordion__question[aria-expanded=true] .accordion__button::after {
  right: auto;
  width: 20px;
  background-color: #333;
}
.accordion__question-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 0 50px;
}
.accordion__question-box::before {
  position: absolute;
  left: 38px;
  content: "Q";
  color: #208D61;
  font-weight: 900;
  font-size: 26px;
}
.accordion__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
}
.accordion__button::before {
  position: absolute;
  left: -2px;
  background-color: #1F8D61;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  width: 15px;
  height: 2px;
  transition: all 0.3s ease;
}
.accordion__button::after {
  position: absolute;
  right: -3px;
  background-color: #1F8D61;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  width: 15px;
  height: 2px;
  transition: all 0.3s ease;
}
.accordion__answer {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.5s ease-out, opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -webkit-transform: translateY(-10px);
  max-height: 0;
  margin: 0 30px 0 30px;
          transform: translateY(-10px);
}
.accordion__answer[aria-hidden=false] {
  opacity: 1;
  -webkit-transform: translateY(0);
  margin: 0 65px 10px 30px;
          transform: translateY(0);
}
.accordion__answer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 15px 15px 50px;
  border-top: 1px solid #D9CAAE;
}
.accordion__answer-box::before {
  position: absolute;
  left: 10px;
  content: "A";
  color: #ED4D54;
  font-weight: 900;
  font-size: 26px;
}
.accordion__title {
  color: #333;
  font-weight: 500;
  font-size: 18px;
}
.accordion__text {
  color: #333;
  font-weight: 500;
  font-size: 18px;
}

.main__kv {
  width: 100%;
}
.main__kv img {
  width: 100%;
  max-width: 90%;
  margin: 0 0 0 auto;
  border-radius: 0 0 0 20px;
}

.localnav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  left: 0;
  max-width: 240px;
}
.localnav__title {
  font-weight: 400;
  font-size: 26px;
}
.localnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 35px;
  padding-left: 10px;
  gap: 25px;
}
.localnav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 35px;
  font-weight: 400;
  font-size: 20px;
  transition: opacity 0.3s ease;
}
.localnav__link::before {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("../images/common/details-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.localnav__link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #208D61;
  content: "";
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.localnav__link:hover::after {
  width: 100%;
}
.localnav__link[aria-current=true]::after {
  width: 100%;
}
.localnav__link:not([aria-current=true]) {
  opacity: 0.5;
}
.localnav__link:not([aria-current=true]):hover {
  opacity: 1;
}
.localnav__link.active {
  opacity: 1;
}
.localnav__link.active::after {
  width: 100%;
}

.breadcrumbs-wrap {
  margin-top: 10px;
  margin-left: 20%;
}

.breadcrumbs-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 40px;
}
.breadcrumbs-lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs-lists a:hover span {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.breadcrumbs-lists a::after {
  position: absolute;
  right: -22px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  -webkit-transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-top: 2px;
          transform: rotate(45deg);
}

.breadcrumbs_cosmowine-wrap {
  margin-top: 10px;
  margin-left: 20%;
}

.breadcrumbs_cosmowine-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 40px;
}
.breadcrumbs_cosmowine-lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs_cosmowine-lists a:hover span {
  color: #10B7B1;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.breadcrumbs_cosmowine-lists a::after {
  position: absolute;
  right: -22px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  -webkit-transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-top: 2px;
          transform: rotate(45deg);
}

.form-text {
  margin: 30px auto 50px;
}

/*
 * [Snow Monkey Forms] 
 * ------------------------------------------------ */
.snow-monkey-form .smf-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.snow-monkey-form .smf-item {
  margin-top: 30px;
}
.snow-monkey-form .smf-item__description {
  margin-bottom: 10px;
}
.snow-monkey-form .smf-item__label {
  margin-bottom: 10px;
}
.snow-monkey-form .smf-item .smf-text-control__control {
  width: 580px !important;
}
.snow-monkey-form .smf-textarea-control__control {
  width: 580px !important;
}
.snow-monkey-form a {
  color: #208D61;
}
.snow-monkey-form .is-privacypolicy .smf-item__label {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .wp-block-snow-monkey-forms-item.smf-item {
  margin: 30px auto 0 0;
}
.snow-monkey-form[data-screen=confirm] .is-privacypolicy .smf-item__label {
  display: block;
}
.snow-monkey-form[data-screen=confirm] .is-privacypolicy .smf-item__description {
  display: none;
}
.snow-monkey-form .smf-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: clamp(24px, 3.90625vw, 56px);
          margin-block-start: clamp(24px, 3.90625vw, 56px);
}
.snow-monkey-form .smf-action .smf-button-control__control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #208D61;
  border-radius: 5px;
  -webkit-transition: background-color 0.4s var(--easing-cubic1), color 0.4s var(--easing-cubic1);
  transition: background-color 0.4s var(--easing-cubic1), color 0.4s var(--easing-cubic1);
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm], .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete] {
  min-width: 260px;
  padding: 11px 24px;
  gap: 8px;
  background: #208D61;
  color: var(--color-white);
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  letter-spacing: calc(100 / 1000 * 1em);
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm]::before, .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete]::before {
  width: 15px;
  height: 15px;
  background: currentcolor;
  content: "";
  -webkit-mask: url("../images/common/arrow-01.svg") center no-repeat;
          mask: url("../images/common/arrow-01.svg") center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm]:focus-visible, .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete]:focus-visible {
  background: var(--color-white);
  color: #208D61;
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back] {
  min-width: 260px;
  padding: 11px 24px;
  gap: 8px;
  background: var(--color-white);
  color: #208D61;
  font-weight: 400;
  font-size: calc(20 / 16 * 1rem);
  letter-spacing: calc(100 / 1000 * 1em);
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back]:focus-visible {
  background: #208D61;
  color: var(--color-white);
}
.snow-monkey-form .smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}

div#autozip {
  display: none !important;
}

/*
 * [note] スライド
 * ------------------------------------------------ */
.swiper {
  margin-left: 15%;
  padding-bottom: 150px;
}
.swiper-wrapper {
  width: 100%;
  max-width: 1160px;
}
.swiper-slide img {
  border-radius: 20px;
}
.swiper-pagination {
  bottom: -35px !important;
  max-width: 780px;
}
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #D9CAAE;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #208D61;
}

.slide-catchphrase {
  z-index: 1;
  position: absolute;
  top: 50px;
  right: 20px;
  min-width: 215px;
  max-width: 450px;
}
.slide-catchphrase-item {
  font-weight: 400;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 1.8;
}
.slide-catchphrase-item-line {
  border-bottom: 3px solid #1F8D61;
}

.home-section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1240px;
  margin: 170px auto 0;
  padding: 0 20px;
}

.insurance-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  gap: 40px;
}
.insurance-services__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  background-color: #FFF;
  -webkit-box-shadow: 0px 2px 5px rgba(51, 51, 51, 0.5411764706);
  width: 50%;
  padding: 40px 30px;
          box-shadow: 0px 2px 5px rgba(51, 51, 51, 0.5411764706);
}
.insurance-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.insurance-services__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  height: 170px;
  padding: 15px 10px;
  border: 1px solid #208D61;
  border-radius: 5px;
}
.insurance-services__list-item-title {
  color: var(--color-green);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
}
.insurance-services__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.insurance-services__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
  font-weight: 400;
  font-size: 24px;
}
.insurance-services__link::before {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url("../images/common/details-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.insurance-services__link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #208D61;
  content: "";
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.insurance-services__link:hover::after {
  width: 100%;
}
.insurance-services__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}

.insurance-consultation-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px;
  margin-bottom: 20px;
  gap: 40px;
}
.insurance-consultation-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
  gap: 50px;
}
.insurance-consultation-flow__step::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #C1AF81 0, #C1AF81 10px, transparent 10px, transparent 15px);
  content: "";
}
.insurance-consultation-flow__step-number {
  color: var(--color-green);
  font-weight: 500;
  font-size: 16px;
}
.insurance-consultation-flow__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 210px;
  gap: 40px;
  font-weight: 400;
  font-size: 24px;
}
.insurance-consultation-flow__step-text {
  font-weight: 400;
  font-size: 16px;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 650px;
  margin: 100px auto 20px;
  gap: 40px;
}
.news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.news-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.news-list__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 70px;
  font-weight: 500;
  font-size: 16px;
}
.news-list__time::after {
  position: absolute;
  right: -20px;
  height: 24px;
  border-right: 1px solid #707070;
  content: "";
}
.news-list__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
}
.news-list__category::after {
  position: absolute;
  right: -20px;
  height: 24px;
  border-right: 1px solid #707070;
  content: "";
}
.news-list__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-width: 380px;
  font-weight: 400;
  font-size: 16px;
}
.news-list__title:hover {
  color: #208d61;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.news-list__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 100px auto 0;
  gap: 40px;
}
.news-list__lower__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.news-list__lower__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.news-list__lower__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 70px;
  font-weight: 500;
  font-size: 16px;
}
.news-list__lower__time::after {
  position: absolute;
  right: -12px;
  height: 24px;
  border-right: 1px solid #707070;
  content: "";
}
.news-list__lower__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
}
.news-list__lower__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  max-width: 380px;
  font-weight: 400;
  font-size: 16px;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.news-list__lower__title:hover {
  color: #208d61;
  opacity: 0.5;
}

.c-page-nation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px auto 0;
}
.c-page-nation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.c-page-nation__list a {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-out;
  font-size: 18px;
  transition: opacity 0.3s ease-out;
}
.c-page-nation__list a:hover {
  opacity: 1;
}
.c-page-nation__list-ac {
  opacity: 1 !important;
}
.c-page-nation__list-arr {
  opacity: 1;
}

.before-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.before-arrow::before {
  position: absolute;
  left: -15px;
  content: "";
  -webkit-mask-image: url("../images/common/arrow-01.svg");
          mask-image: url("../images/common/arrow-01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(-180deg);
  width: 15px;
  height: 15px;
  margin-top: 3px;
          transform: rotate(-180deg);
  background-color: #208D61;
}

.next-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.next-arrow::before {
  position: absolute;
  right: -15px;
  content: "";
  -webkit-mask-image: url("../images/common/arrow-01.svg");
          mask-image: url("../images/common/arrow-01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  background-color: #208D61;
          mask-position: center;
}

.detail-page-nation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px auto 0;
}
.detail-page-nation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.detail-page-nation__list a {
  font-weight: 400;
  font-size: 18px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.detail-page-nation__list a:hover {
  opacity: 0.5;
}
.detail-page-nation__before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.detail-page-nation__before:hover {
  opacity: 0.5;
}
.detail-page-nation__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.detail-page-nation__next:hover {
  opacity: 0.5;
}

.detail-news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  gap: 20px;
}
.detail-news__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 70px;
  font-weight: 500;
  font-size: 16px;
}
.detail-news__time::after {
  position: absolute;
  right: -12px;
  height: 22px;
  border-right: 2px solid #707070;
  content: "";
}
.detail-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px;
  gap: 20px;
}
.detail-news__content figure {
  margin: 0;
}
.detail-news__content img {
  margin: 0 auto;
  border-radius: 20px;
}
.detail-news__content iframe {
  margin: 0 auto;
}
.detail-news__content a {
  color: var(--color-green);
  font-size: 18px;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.detail-news__content a:hover {
  opacity: 0.5;
}

.sitemap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sitemap__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sitemap__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sitemap__sublist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sitemap__first-link {
  padding: 40px 30px;
  border-top: 1px solid #D9CAAE;
  border-bottom: 1px solid #D9CAAE;
  color: #333;
  font-weight: 500;
  font-size: 20px;
}
.sitemap__first-link:hover {
  color: #8CC2A7;
}
.sitemap__second-link {
  margin-left: 120px;
  padding: 40px 30px;
  border-top: 1px solid #D9CAAE;
  border-bottom: 1px solid #D9CAAE;
  color: #333;
  font-weight: 400;
  font-size: 20px;
}
.sitemap__second-link:hover {
  color: #8CC2A7;
}
.sitemap__third-link {
  width: 100%;
  margin-left: 240px;
  padding: 40px 30px;
  border-bottom: 1px solid #D9CAAE;
  color: #333;
  font-weight: 400;
  font-size: 20px;
}
.sitemap__third-link:hover {
  color: #8CC2A7;
}

.border-top-none {
  border-top: none;
}

.border-bottom-none {
  border-bottom: none;
}

.recruit-main {
  z-index: 1;
  position: relative;
}
.recruit-main__gradient-back01 {
  z-index: -1;
  position: absolute;
  top: 15%;
  right: 0;
  width: 100%;
  margin-left: 15%;
}
.recruit-main__gradient-back01 img {
  margin: auto 0 auto auto;
}
.recruit-main__gradient-back02 {
  z-index: -1;
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  margin-right: 15%;
}
.recruit-main__kv {
  position: relative;
}
.recruit-main__kv::before {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #E5FFF7;
  background: linear-gradient(135deg, rgb(229, 255, 247) 0%, rgb(243, 237, 206) 50%, rgb(249, 204, 213) 100%);
  content: "";
  opacity: 0.6;
}
.recruit-main__kv img {
  width: 100%;
  max-width: 100%;
}
.recruit-main__kv-catchphrase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 50%;
  bottom: 50%;
  content: "";
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0 20px;
}
.recruit-main__kv-catchphrase-text {
  font-weight: 400;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 5px;
  text-align: center;
}
.recruit-main__kv-catchphrase picture {
  position: relative;
  top: -10px;
  -webkit-transform: rotate(-4deg);
  padding-left: 400px;
          transform: rotate(-4deg);
}

.recruit__main-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 80px auto 0;
  gap: 10px;
}
.recruit__main-title {
  color: #6BD191;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
}
.recruit__main-sub-title {
  font-weight: 400;
  font-size: 20px;
}
.recruit__sub-content-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
}
.recruit__sub-content-title-group::before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #FABFB2;
  content: "";
}
.recruit__sub-content-title {
  font-weight: 500;
  font-size: 22px;
}
.recruit__top-catchphrase-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 80px auto 0;
  gap: 50px;
}
.recruit__top-catchphrase-box--left {
  max-width: 60%;
}
.recruit__top-catchphrase-box--left img {
  width: 100%;
}
.recruit__top-catchphrase-box--right {
  max-width: 40%;
  margin-right: 10%;
}
.recruit__top-catchphrase-box--title {
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
}
.recruit__top-catchphrase-box--text {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.2;
}
.recruit__company-values {
  margin-top: 60px;
}
.recruit__company-values-title-group {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.recruit__company-values-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 32px;
}
.recruit__company-values-title::before {
  z-index: -2;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #FABFB2;
  content: "";
}
.recruit__company-values-title::after {
  z-index: -1;
  position: absolute;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #FFF;
  content: "";
}
.recruit__company-values-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  padding: 0 20px;
  gap: 60px;
}
.recruit__company-values-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  max-width: 560px;
  gap: 20px;
}
.recruit__company-values-box--title {
  font-weight: 500;
  font-size: 24px;
}
.recruit__company-values-box--text {
  font-weight: 400;
  font-size: 16px;
}
.recruit__main-content-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 120px auto 0;
  padding: 0 20px;
}
.recruit__business-introduction-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 120px auto 0;
}
.recruit__business-introduction-title-group::before {
  position: absolute;
  top: -50px;
  width: 1px;
  height: 35px;
  background-color: #FABFB2;
  content: "";
}
.recruit__business-introduction-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
.recruit__business-introduction-two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  gap: 30px;
}
.recruit__business-introduction-two-columu--left {
  width: 40%;
}
.recruit__business-introduction-two-columu--right {
  width: 60%;
}
.recruit__business-introduction-two-columu--right img {
  margin: 0 auto;
}
.recruit__business-introduction-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.recruit__business-introduction-list-dt {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  font-size: 18px;
}
.recruit__business-introduction-list-dt::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #FABFB2;
  content: "";
}
.recruit__business-introduction-list-dt::after {
  position: absolute;
  right: -20px;
  width: 1px;
  height: 100%;
  background-color: #E0E0E0;
  content: "";
}
.recruit__business-introduction-list-dd {
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}
.recruit__oneday-flow {
  margin-top: 60px;
}
.recruit__oneday-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 30px;
}
.recruit__oneday-flow-list--dl {
  width: 50%;
}
.recruit__oneday-flow-list--dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  gap: 20px;
  color: #F88D76;
  font-weight: 700;
  font-size: 20px;
}
.recruit__oneday-flow-list--dt-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 55px;
  color: #F88D76;
  font-weight: 700;
  font-size: 24px;
}
.recruit__oneday-flow-list--dt-time::after {
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #F88D76;
  content: "";
}
.recruit__oneday-flow-list--dt + dt {
  margin-top: 30px;
}
.recruit__oneday-flow-list--dd {
  margin-bottom: 30px;
  margin-left: 80px;
  font-weight: 400;
  font-size: 16px;
}
.recruit__oneday-flow-dot-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.recruit__oneday-flow-dot-list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
}
.recruit__oneday-flow-dot-list--item::before {
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #333;
  content: "";
}
.recruit__staff-interview {
  margin-top: 60px;
}
.recruit__staff-interview-two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 100px;
  gap: 30px;
}
.recruit__staff-interview-two-columu--left {
  width: 40%;
}
.recruit__staff-interview-two-columu--left img {
  margin: 0 auto;
}
.recruit__staff-interview-two-columu--imageicon {
  margin-top: 20px;
}
.recruit__staff-interview-two-columu--right {
  width: 60%;
}
.recruit__staff-interview-two-columu--title {
  color: #1DC35A;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
}
.recruit__staff-interview-two-columu--name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}
.recruit__staff-interview-two-columu--text {
  margin-top: 20px;
  line-height: 2;
}
.recruit__application {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
  gap: 20px;
}
.recruit__application-catchtext {
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}
.recruit__application-list {
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0;
}
.recruit__application-list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 30px 30px 10px;
  gap: 10px;
  border-bottom: 1px solid #BCB7B7;
}
.recruit__application-list--item-title {
  font-weight: 500;
  font-size: 24px;
}
.recruit__application-list--item-button {
  -webkit-transition: opacity 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 0.3s ease;
}
.recruit__application-list--item-button:hover {
  color: #30C467;
  opacity: 0.5;
}
.recruit__application-list--item-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #30C467;
  font-weight: 500;
  font-size: 22px;
}
.recruit__application-list--item-button-link::before {
  position: absolute;
  left: -25px;
  content: "";
  -webkit-mask-image: url("../images/common/arrow-01.svg");
          mask-image: url("../images/common/arrow-01.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #30C467;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 14px;
  height: 14px;
  transition: background-color 0.3s ease-out;
}
.recruit__application-list--item-button-link::after {
  position: absolute;
  right: -15px;
  content: "";
  -webkit-mask-image: url("../images/recruit/external-link-icon02.svg");
          mask-image: url("../images/recruit/external-link-icon02.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #30C467;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease-out;
  width: 12px;
  height: 12px;
  transition: background-color 0.3s ease-out;
}

.cosmowine-main__kv {
  position: relative;
}
.cosmowine-main__kv img {
  width: 100%;
  max-width: 65%;
  margin: 0 0 0 auto;
}
.cosmowine-main__kv-catchphrase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 5%;
  content: "";
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: auto;
}
.cosmowine-main__kv-catchphrase-text {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.5;
}
.cosmowine-main__kv-catchphrase-company-english {
  color: #BF4ABF;
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
}
.cosmowine-main__kv-catchphrase-company {
  color: #BF4ABF;
  font-weight: 500;
  font-size: 40px;
}

.cosmowine__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  padding: 0 20px;
  gap: 80px;
}
.cosmowine__explain-about-two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
.cosmowine__explain-about-two-columu--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-width: 400px;
}
.cosmowine__explain-about-two-columu--left::after {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 150%;
  height: 2px;
  background-color: #BF4ABF;
  content: "";
}
.cosmowine__explain-about-two-columu--right {
  width: 100%;
}
.cosmowine__explain-about-two-columu--title {
  color: #BF4ABF;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
}
.cosmowine__explain-about-two-columu--subtitle {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__explain-about-two-columu--text {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.cosmowine__recruit {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 8px;
  background-color: #BF4ABF;
}
.cosmowine__recruit-two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.cosmowine__recruit-two-columu--left {
  position: relative;
  bottom: -80px;
  width: 100%;
  max-width: 300px;
}
.cosmowine__recruit-two-columu--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-right: 20px;
}
.cosmowine__recruit-two-columu--maintitle {
  color: #FFF;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
.cosmowine__recruit-two-columu--subtitle {
  margin-top: 5px;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__recruit-two-columu--title {
  margin-top: 35px;
  color: #FFF;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}
.cosmowine__recruit-two-columu--text {
  margin-top: 10px;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1040px;
  margin: 200px auto 0;
  padding: 0 20px;
  gap: 50px;
}
.cosmowine__news-title {
  color: #BF4ABF;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
}
.cosmowine__news-subtitle {
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 560px;
  gap: 20px;
}
.cosmowine__news-list--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.cosmowine__news-list--category {
  color: #BF4ABF;
}
.cosmowine__news-list--title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-transition: opacity 0.3s ease-out, color 0.3s ease-out;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s ease-out, color 0.3s ease-out;
}
.cosmowine__news-list--title:hover {
  color: #BF4ABF;
  opacity: 0.5;
}
.cosmowine__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  padding: 0 20px 0 0;
}
.cosmowine__access-two-columu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 50px;
}
.cosmowine__access-two-columu--left {
  width: 60%;
}
.cosmowine__access-two-columu--left iframe {
  width: 100%;
}
.cosmowine__access-two-columu--right {
  width: 40%;
}
.cosmowine__access-two-columu--title {
  color: #BF4ABF;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
}
.cosmowine__access-two-columu--subtitle {
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__access-two-columu--text {
  margin-top: 30px;
  font-weight: 500;
  font-size: 16px;
}
.cosmowine__instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  padding: 0 20px;
  gap: 10px;
}
.cosmowine__instagram-text {
  font-weight: 500;
  font-size: 24px;
}

.error-page404 {
  width: 100%;
  max-width: 940px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.page404-link {
  color: var(--color-green);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.page404-link:hover {
  color: var(--color-green);
  opacity: 0.5;
}

.return-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}

.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-center {
  text-align: center !important;
}

.fs-big {
  font-size: 1.111em !important;
}

.fs-big-02 {
  font-size: 1.222em !important;
}

.fs-big-03 {
  font-size: 1.333em !important;
}

.fs-small {
  font-size: 0.889em !important;
}

.fs-small-02 {
  font-size: 0.778em !important;
}

.fs-small-03 {
  font-size: 0.667em !important;
}

/*---------------------------------------------------*/
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.hidden {
  display: none;
}

@media screen and (min-width: 768px){
  .header__gnav-buttom {
    display: none;
  }
  .cosmowine-header__gnav-buttom {
    display: none;
  }
  .gnav {
    display: none;
    position: static;
    width: auto;
    background-color: transparent;
  }
  .footer__end-menu {
    display: none;
  }
  .cosmowine-footer__end-menu {
    display: none;
  }
  .only-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1024px){
  :root {
    --header-height: 100px;
  }
  .snow-monkey-form .smf-action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (max-width: 1024px){
  .recruit .recruit-header {
    margin-top: -90px;
  }
  .main__contents {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 0 20px;
  }
  .main__aside {
    display: none;
  }
  .company-profile__th {
    font-size: 18px;
  }
  .company-profile__td {
    font-size: 18px;
  }
  .company-profile__td-note {
    font-size: 14px;
  }
  .detail-news__content img {
    max-width: 80% !important;
  }
}

@media screen and (max-width: 950px){
  .swiper {
    margin-left: 0;
  }
  .insurance-services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .insurance-services__box {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px){
  body {
    line-height: 1.5;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
  }
  .tel-link {
    color: var(color-blue);
    text-decoration: underline;
    pointer-events: auto;
  }
  .header__menu {
    display: none;
  }
  .cosmowine-header__menu {
    display: none;
  }
  .footer {
    margin-top: 80px;
  }
  .footer__img-box {
    padding-bottom: 50px;
    gap: 40px;
  }
  .footer__banner-box {
    gap: 0;
  }
  .footer__banner-box::after {
    display: none;
  }
  .footer__orginfo {
    display: none;
  }
  .footer__orginfo-contact-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__inner {
    display: none;
  }
  .recruit .footer__img-box {
    padding: 0;
    gap: 20px;
  }
  .recruit .footer__orginfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto 0;
  }
  .recruit .footer__orginfo-desc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .recruit .footer__orginfo-desc-time-tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .recruit .footer__orginfo-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recruit .footer__orginfo-contact-button {
    height: 60px;
    margin: 10px auto;
  }
  .recruit .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    border-top: none;
  }
  .cosmowine-footer {
    margin-top: 80px;
  }
  .cosmowine-footer__orginfo {
    display: none;
  }
  .main__container {
    display: block;
  }
  .details-link {
    padding-left: 30px;
    font-size: 18px;
  }
  .details-link::before {
    width: 22px;
    height: 22px;
  }
  .recruit__details-button {
    max-width: 240px;
  }
  .recruit__details-link::before {
    left: 50px;
  }
  .cosmowine__recruit-two-columu--button {
    margin: 50px auto 0;
  }
  .cosmowine__news-details-button {
    margin: 0 auto;
  }
  .section-title {
    font-size: 22px;
  }
  .content-title {
    font-size: 20px;
  }
  .content-next-title {
    font-size: 18px;
  }
  .two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .two-columu__left {
    width: 100%;
  }
  .two-columu__right {
    width: 100%;
  }
  .two-columu__text {
    line-height: 1.5;
  }
  .two-columu__list {
    gap: 15px;
  }
  .two-columu__list-item {
    height: auto;
    padding: 15px 10px 15px 10px;
  }
  .two-columu__list-item-title {
    margin-top: 5px;
    font-size: 18px;
  }
  .two-columu__list-item-text {
    margin-top: 15px;
  }
  .top-two-columu__title {
    font-size: 18px;
  }
  .exchange-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .breadcrumbs-wrap {
    margin-top: 5px;
    margin-left: 10%;
  }
  .breadcrumbs-lists {
    gap: 5px 30px;
  }
  .breadcrumbs-lists li {
    font-size: 13px;
  }
  .breadcrumbs-lists a::after {
    right: -16px;
  }
  .breadcrumbs_cosmowine-wrap {
    margin-top: 5px;
    margin-left: 10%;
  }
  .breadcrumbs_cosmowine-lists {
    gap: 5px 30px;
  }
  .breadcrumbs_cosmowine-lists li {
    font-size: 13px;
  }
  .breadcrumbs_cosmowine-lists a::after {
    right: -16px;
  }
  .form-text {
    margin: 0 auto 20px;
  }
  .snow-monkey-form .smf-item {
    width: 100%;
  }
  .snow-monkey-form .smf-item .smf-text-control__control {
    width: 100% !important;
  }
  .snow-monkey-form .smf-textarea-control__control {
    width: 100% !important;
  }
  .swiper {
    padding-bottom: 170px;
  }
  .swiper-slide img {
    border-radius: 0 20px 20px 0;
  }
  .swiper-pagination {
    max-width: 120px;
  }
  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
  .slide-catchphrase {
    top: auto;
    bottom: -105px;
  }
  .slide-catchphrase-item {
    line-height: 1.6;
  }
  .home-section-wrap {
    margin: 100px auto 0;
  }
  .insurance-services {
    margin-top: 50px;
  }
  .insurance-services__box {
    padding: 30px 10px;
  }
  .insurance-services__list-item {
    height: auto;
    padding: 15px 5px;
    gap: 15px;
  }
  .insurance-services__list-item img {
    width: 32px;
    height: 32px;
  }
  .insurance-services__list-item-title {
    font-size: 16px;
  }
  .insurance-services__link {
    padding-left: 30px;
    font-size: 20px;
  }
  .insurance-services__link::before {
    width: 22px;
    height: 22px;
  }
  .insurance-services__text {
    line-height: 1.5;
  }
  .insurance-consultation-flow {
    margin-top: 50px;
  }
  .insurance-consultation-flow__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .insurance-consultation-flow__step-number {
    font-size: 14px;
  }
  .insurance-consultation-flow__step-title {
    gap: 10px;
    font-size: 20px;
  }
  .news-list {
    margin: 50px auto 0;
  }
  .news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .news-list__info {
    gap: 20px;
  }
  .news-list__time::after {
    right: -12px;
  }
  .news-list__category::after {
    display: none;
  }
  .news-list__lower {
    margin: 50px auto 0;
  }
  .detail-news__content {
    margin-top: 50px;
  }
  .recruit-main__kv-catchphrase {
    top: 0;
    bottom: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .recruit-main__kv-catchphrase-text {
    font-size: 28px;
    text-align: start;
  }
  .recruit-main__kv-catchphrase picture {
    top: -5px;
    padding-left: 40%;
  }
  .recruit__main-title {
    font-size: 60px;
  }
  .recruit__top-catchphrase-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 30px auto 0;
    gap: 20px;
  }
  .recruit__top-catchphrase-box--left {
    max-width: 100%;
  }
  .recruit__top-catchphrase-box--right {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .recruit__top-catchphrase-box--text {
    margin-top: 20px;
    line-height: 1.8;
  }
  .recruit__company-values-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit__company-values-box {
    width: 100%;
  }
  .recruit__business-introduction-two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit__business-introduction-two-columu--left {
    width: 100%;
  }
  .recruit__business-introduction-two-columu--right {
    width: 100%;
  }
  .recruit__oneday-flow-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .recruit__oneday-flow-list--dl {
    width: 100%;
  }
  .recruit__staff-interview-two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit__staff-interview-two-columu--left {
    width: 100%;
  }
  .recruit__staff-interview-two-columu--right {
    width: 100%;
  }
  .recruit__application-list--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
  }
  .recruit__application-list--item-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20px;
  }
  .recruit__application-list--item-button-link::before {
    left: -20px;
  }
  .cosmowine-main__kv img {
    max-width: 75%;
  }
  .cosmowine-main__kv-catchphrase {
    top: 0;
    bottom: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .cosmowine-main__kv-catchphrase-text {
    font-size: 20px;
  }
  .cosmowine-main__kv-catchphrase-company-english {
    font-size: 20px;
  }
  .cosmowine-main__kv-catchphrase-company {
    font-size: 20px;
  }
  .cosmowine__explain-about-two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cosmowine__explain-about-two-columu--left {
    max-width: 100%;
  }
  .cosmowine__explain-about-two-columu--left::after {
    width: 100%;
  }
  .cosmowine__recruit {
    padding: 20px;
  }
  .cosmowine__recruit-two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
  .cosmowine__recruit-two-columu--left {
    bottom: -50px;
    left: -20px;
  }
  .cosmowine__recruit-two-columu--right {
    padding-right: 0;
  }
  .cosmowine__news-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 150px auto 0;
  }
  .cosmowine__access {
    padding: 0 20px;
  }
  .cosmowine__access-two-columu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .cosmowine__access-two-columu--left {
    width: 100%;
  }
  .cosmowine__access-two-columu--right {
    width: 100%;
  }
}

@media screen and (max-width: 767px){
  .only-pc {
    display: none !important;
  }
}

@media screen and (max-width: 576px){
  .cosmowine__instagram-button-link {
    padding: 10px 50px 15px 10px;
  }
  .text-area {
    line-height: 1.8;
  }
  .accordion__question {
    padding: 15px;
  }
  .accordion__question-box::before {
    left: 15px;
  }
  .accordion__question-box {
    padding: 0 20px 0 30px;
  }
  .accordion__answer {
    margin: 0 45px 0 15px;
  }
  .accordion__answer-box::before {
    left: 2px;
  }
  .accordion__answer-box {
    padding: 15px 5px 15px 30px;
  }
  .accordion__title {
    font-size: 15px;
  }
  .accordion__text {
    font-size: 15px;
  }
  .detail-news__content img {
    max-width: 100% !important;
  }
  .sitemap__first-link {
    padding: 20px;
    font-size: 16px;
  }
  .sitemap__second-link {
    margin-left: 15%;
    padding: 20px;
    font-size: 16px;
  }
  .sitemap__third-link {
    margin-left: 30%;
    padding: 20px;
    font-size: 16px;
  }
  .recruit-main__gradient-back02 {
    top: 45%;
  }
  .recruit-main__kv-catchphrase picture {
    padding-left: 30%;
  }
  .recruit__company-values-title {
    font-size: 23px;
  }
  .recruit__company-values-title::after {
    width: 220px;
  }
  .recruit__company-values-box--title {
    font-size: 20px;
  }
  .recruit__business-introduction-list {
    gap: 20px;
  }
  .recruit__business-introduction-list-dt {
    min-width: 90px;
    font-size: 16px;
  }
  .recruit__business-introduction-list-dt::after {
    right: -10px;
  }
  .recruit__oneday-flow-list--dt {
    font-size: 18px;
  }
  .recruit__oneday-flow-list--dt-time {
    font-size: 20px;
  }
  .recruit__staff-interview-two-columu--title {
    font-size: 20px;
  }
  .recruit__application-list--item-title {
    font-size: 20px;
  }
  .recruit__application-list--item-button-link {
    font-size: 20px;
  }
  .cosmowine__explain-about-two-columu--title {
    font-size: 40px;
  }
}

@media (any-hover: hover){
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm]:hover, .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete]:hover {
    background: var(--color-white);
    color: #208D61;
  }
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=back]:hover {
    background: #208D61;
    color: var(--color-white);
  }
}

@media (any-hover: none){
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=confirm]:active, .snow-monkey-form .smf-action .smf-button-control__control[data-action=complete]:active {
    background: var(--color-white);
    color: #208D61;
  }
  .snow-monkey-form .smf-action .smf-button-control__control[data-action=back]:active {
    background: #208D61;
    color: var(--color-white);
  }
}

@media (prefers-reduced-motion: no-preference){
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
/*# sourceMappingURL=style.css.map */
