/*---------------------------------

  1.共通・リセットスタイル
  2.各マージン・パディングやサイズ・レイアウトの設定
  3.他のページで使いまわし可能なスタイル
    3-1.パンくずリスト
    3-2.ページトップボタン
    3-3.各要素に存在するアイコン各種

---------------------------------*/
/*---------------------------------

  共通・リセットスタイル

---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  --commonly-color: #434448;
  --color-white: #fff;
  --accent-color-1: #3d519d;
  --accent-color-2: #f38e0a;
  --accent-color-3: #8894c0;
  --accent-color-4: #f1f4f8;
  --accent-color-5: #edb242;
  --accent-color-6: #2b91d2;
  --accent-color-7: #ebf7fe;
  --accent-color-8: #f8f8f8;
  --darkblue-color: #3d519d;
  --lightblue-color: #f38e0a;
  --lightblue-color-1: #8894c0;
  --lightblue-color-2: #f1f4f8;
  --pureblue-color: #f0fbff;
  --white-color: #fff;
  --gray-color-1: #f6f6f6;
  --gray-color-2: #666666;
  --gray-color-3: #ccc;
  --gray-color-4: #999;
  --gray-color-5: #333;
  --gray-color-6: #f7f7f7;
  --gray-color-7: #d6d6d6;
  --yellow-color-1: #ffae00;
  --base-font-size: 1.6rem;
}

html {
  font-size: 62.5%;
  line-height: 1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック", "游ゴシック Medium", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--base-font-size);
  color: var(--commonly-color);
  letter-spacing: .186em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
ul,
input {
  margin: 0;
  padding: 0;
  font-size: inherit;
}

ul,
dl {
  list-style: none;
}

address {
  font-style: normal;
}

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

select {
  color: var(--commonly-color);
}

button,
input:not([type=radio]):not([type=checkbox]),
select,
textarea {
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button],
button {
  border: 0;
  cursor: pointer;
}

input[type=submit] {
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  overflow: auto;
  background-color: transparent;
  resize: none;
}

button {
  border: 0;
}

select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #858585;
}

::-moz-placeholder {
  color: #858585;
}

:-ms-input-placeholder {
  color: #858585;
}

::-ms-input-placeholder {
  color: #858585;
}

::placeholder {
  color: #858585;
}

small {
  font-size: 1rem;
}

a {
  color: #434448;
  text-decoration: none;
}
a:hover {
  transition-duration: 0.4s;
}

img {
  vertical-align: bottom;
}

.wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

body .wpcf7-spinner {
  display: none;
}

.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform: translateZ(0);
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slick-track {
  display: flex;
}

.list-style-disc {
  list-style-type: disc;
}

.button:hover {
  opacity: 0.8;
  transition-duration: 0.5s;
}

.text-weight-bold {
  font-weight: bold;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}
.container {
  width: 1200px;
  min-width: 1200px;
  max-width: 1200px;
}

.container-fluid {
  max-width: 100%;
}

.container-primary {
  max-width: 1200px;
}

.link-full {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/*  
  パンくずリスト
---------------------------------*/
body.p-recruit .breadcrumbs {
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 60px;
  padding: 15px 0;
}
.breadcrumbs a {
  color: var(--gray-color-2);
}
.breadcrumbs__items {
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
.breadcrumbs__items--current a {
  color: var(--commonly-color);
}
.breadcrumbs__items:not(:last-of-type) {
  white-space: nowrap;
}
.breadcrumbs__items:not(.breadcrumbs__items--current) a {
  text-decoration: underline;
}
.breadcrumbs__items:not(.breadcrumbs__items--current) a:hover {
  text-decoration: none;
}
.breadcrumbs__items:not(.breadcrumbs__items--current)::after {
  padding: 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: .02em;
  content: ">";
}

/*  
  ページトップボタン
---------------------------------*/
.pagetop.fixed {
  opacity: 1;
  transition: 0.3s;
}

.pagetop {
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  background: var(--color-white);
  text-align: center;
  opacity: 0;
}
.pagetop a {
  display: inline-block;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2142857143;
  text-align: center;
  transition-duration: 0.3s;
}
.pagetop a > span {
  display: block;
  margin: -2px 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color-1);
  -webkit-transform: scale(1, 0.8);
          transform: scale(1, 0.8);
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-contact .pagetop,
.p-entry .pagetop {
  bottom: 70px;
}

/*  
  各要素に存在するアイコン各種
---------------------------------*/
@font-face {
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/icomoon.eot?jbvgb20221523");
  src: url("../fonts/icomoon.eot?jbvgb20221523#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?jbvgb20221523") format("truetype"), url("../fonts/icomoon.woff?jbvgb20221523") format("woff"), url("../fonts/icomoon.svg?jbvgb20221523#icomoon") format("svg");
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: never;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-line:before {
  content: "\e900";
}

.icon-phone:before {
  content: "\e901";
}

.icon-reserve:before {
  content: "\e902";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-arrow-up:before {
  content: "\e903";
}

.icon-arrow-down:before {
  content: "\e904";
}

.icon-arrow-left:before {
  content: "\e906";
}

.icon-arrow-right:before {
  display: block;
  content: "\e906";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.icon-arrow-double-down:before {
  content: "\e908";
}

.icon-arrow-double-up:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\e90a";
}

.icon-arrow-flow-down:before {
  content: "\e90b";
}

.icon-external-link:before {
  content: "\e909";
}

.icon-bold::before {
  font-weight: 900;
}

.icon-size-4::before {
  font-size: 4rem;
}

.p-y-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-x-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.arrow-right.-small {
  position: absolute;
  right: 10px;
  bottom: 15px;
}
.arrow-right.-small.-member {
  position: absolute;
  top: 50%;
  right: -2em;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.arrow-right.-small.-member::after {
  width: 15px;
}
.arrow-right.-small.-member::before {
  width: 4px;
}
.arrow-right.-medium {
  position: absolute;
  right: 0;
  width: 50px;
  height: 5px;
}
.arrow-right.-medium::after {
  width: 40px;
}
.arrow-right.-light-blue::after, .arrow-right.-light-blue::before {
  background-color: var(--accent-color-6);
}
.arrow-right.-p-right-bottom {
  right: 10px;
  bottom: 10px;
}
.arrow-right::after, .arrow-right::before {
  position: absolute;
  z-index: 1;
  right: 0;
  height: 1px;
  background-color: var(--color-white);
  content: "";
}
.arrow-right::after {
  bottom: 0;
  width: 20px;
}
.arrow-right::before {
  bottom: 2px;
  width: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 
  reCAPTCHA
---------------------------------*/
.grecaptcha-badge {
  bottom: 0 !important;
}

/* 
  トップバナーエリア
---------------------------------*/
aside.news_area {
  margin: 70px 0;
}

aside.news_area img {
  transition-duration: 0.4s;
}

aside.news_area img:hover {
  opacity: 0.8;
  transition-duration: 0.4s;
}

@media screen and (max-width:768px) {
  img {
    width: 100%;
    height: auto;
  }
  .float-right-sm {
    float: right;
  }

  .float-left-sm {
    float: left;
  }
  .container {
    width: 100%;
    min-width: auto;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .breadcrumbs__items {
    font-size: 1rem;
  }
  .breadcrumbs__items:not(.breadcrumbs__items--current)::after {
    font-size: 1rem;
  }
  .pagetop {
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
  }
  .pagetop a {
    font-size: 1.3rem;
  }
  .pagetop a > span {
    font-size: 1.4rem;
  }
  .arrow-right.-small {
    right: 5px;
    bottom: 7.5px;
  }
  .arrow-right.-medium {
    width: 25px;
    height: 3px;
  }
  .arrow-right.-medium::after {
    width: 20px;
  }
  .arrow-right::after {
    width: 10px;
  }
  .arrow-right::before {
    bottom: 1px;
    width: 3px;
  }
}

@media screen and (max-width: 768px) {
  aside.news_area {
    margin: 30px 0 10px;
  }

  aside.news_area img {
    width: 90%;
  }

  aside.news_area img:hover {
    opacity: unset;
  }
}
