/*
【ブレイクポイントはBootstrap v5.0に準ずる】
Small : 576px
Medium : 768px
Large : 992px
Extra large : 1200px
Extra extra large: 1400px
*/

:root {
  --base-color: #FFFFFF;
  --main-color: #dae8f5;
  --sub-color-blue01:#14257d;
  --sub-color-green01:#FF9494;
  --accent-color: #2277D6;
  --font-color: #333333;

  --sub-color: #BFBFBF;
  --border-color: #e2e4e4;
  --pink01: #ED80C0;
  --pink02: #E43A60;
}

body {
  font-family: Noto Sans JP,游ゴシック体,YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,sans-serif;
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/*===================================================================================
デバイス（Device）
===================================================================================*/
.sp-only { display: block !important; }
.pc-only { display: none !important; }
@media screen and (min-width: 768px) {
  .sp-only { display: none !important; }
  .pc-only { display: block !important; }
}


/*============================================================================================================================
icon
============================================================================================================================*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?kkpug');
  src:  url('fonts/icomoon.eot?kkpug#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?kkpug') format('truetype'),
    url('fonts/icomoon.woff?kkpug') format('woff'),
    url('fonts/icomoon.svg?kkpug#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-phone:before {
  content: "\e942";
}
.icon-new-tab:before {
  content: "\ea7e";
}

/* google material-symbols */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 200,
  'opsz' 48
}

/*============================================================================================================================
wrapper（ラッパー）
============================================================================================================================*/
.c-wrapper {
  width: calc(100% - 5%);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .top-mv .c-wrapper {
    width: 100%;
  }
}

/*============================================================================================================================
section（セクション）
============================================================================================================================*/
.c-section {
  padding: 5em 0;
}

/*============================================================================================================================
headline（見出し）
============================================================================================================================*/
.c-headline_2 {
  color: var(--sub-color-blue01);
  font-size: 1.25rem;
}
.c-headline_2.--white {
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-headline_2 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .c-headline_2 {
    font-size: 2.5rem;
    letter-spacing: .2em;
  }
}

/*============================================================================================================================
layout（レイアウト）
============================================================================================================================*/
  .c-container_B {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
@media screen and (min-width: 992px) {
  .c-container_A {
    display: flex;
    justify-content: space-between;
  }
  .c-container_A > .c-column_A.left {
    width: 32%;
  }
  .c-container_A > .c-column_A.right {
    width: 63%;
  }
  .c-container_B {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/*============================================================================================================================
button（ボタン）
============================================================================================================================*/
.c-button_A {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  background: #FFF;
  border-radius: 25px;
  box-shadow: 0 3px 6px 0 rgb(29 45 99 / 16%);
  text-decoration: none;
  overflow: hidden;
}
.c-button_A .text {
  position: relative;
  z-index: 20;
  display: inline-block;
  margin-right: 1em;
}
.c-button_A:hover .text {
  color: #FFF;
}
.c-button_A [class^="icon-"] {
  position: relative;
  z-index: 20;
}
.c-button_A:hover [class^="icon-"] {
  color: #FFF;
}
@media screen and (min-width: 992px) {
  .c-button_A::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 25px;
    transform: translate3d(-100%, 0, 0);
    transition: transform .4s cubic-bezier(.38,.33,.23,.99) 0s;
  }
  .c-button_A:hover::before {
    transform: translateZ(0);
  }
}

/*============================================================================================================================
table（テーブル）
============================================================================================================================*/
.c-table_A {
  width: 100%;
  border-radius: 10px;
}
.c-table_A tr th + th,
.c-table_A tr th + td,
.c-table_A tr td + th,
.c-table_A tr td + td {
  border-left: 1px solid rgba(71,70,69,.2);
}
.c-table_A tr th,
.c-table_A tr td {
  padding: .3em;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-table_A tr th,
  .c-table_A tr td {
    padding: .5em;
  }
}
@media screen and (min-width: 992px) {
  .c-table_A tr th,
  .c-table_A tr td {
    padding: .8em;
  }
}
.c-table_A tr th {
  color: #FFF;
  background-color: var(--accent-color);
  border: 1px solid #FFF;
  font-weight: 400;
}
.c-table_A__head tr th,
.c-table_A__head tr td {
  color: #FFF;
  font-weight: 700;
  /* border-bottom: 1px solid rgba(71,70,69,.2); */
  background: var(--accent-color);
}
.c-table_A__body tr + tr th,
.c-table_A__body tr + tr td {
  border-top: 1px solid rgba(71,70,69,.2);
}
.c-table_A__body tr td {
  background-color: #FFF;
}
.c-table_A__body tr td .ok {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20px;
  height: 20px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
}
.c-table_A__body tr td .ok.rhombus {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-color: var(--accent-color);
  border-radius: 0%;
}
.c-table_A__body tr td .ok.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background-color: var(--accent-color);
  border-radius: 0%;
}
.c-table_A__body tr td .ok.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--accent-color);
  border-radius: 0%;
}
.c-table_A__body tr td .ng {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20px;
  height: 2px;
  background-color: var(--sub-color);
}
@media screen and (min-width: 768px) {
  .c-table_A__body tr td .ok {
    width: 30px;
    height: 30px;
  }
  .c-table_A__body tr td .ng {
    width: 30px;
  }
}



/*============================================================================================================================
animation（アニメーション）
============================================================================================================================*/
.js-fadeUp {
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 3s cubic-bezier(0.33, 1, 0.68, 1) ,transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-greeting__career-box.js-fadeUp.is-inview:nth-of-type(1) {
  transition-delay: 0s;
}
.p-greeting__career-box.js-fadeUp.is-inview:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-greeting__career-box.js-fadeUp.is-inview:nth-of-type(3) {
  transition-delay: 0.6s;
}

/*============================================================================================================================
header（ヘッダー）
============================================================================================================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background-color: var(--base-color);
  box-shadow: 1px 2px 8px -5px #333333;
}
.l-header__inner {
  padding: 1.5em 0;
}
.l-header__logo {
  max-width: 482px;
  width: 100%;
  height: 100%;
}
.l-header__tel {
  font-size: 1rem;
  text-align: center;
  align-content: center;
}
.l-header__tel p {
  color: var(--accent-color);
}
.l-header__tel p strong {
  font-size: 1.2rem;
  font-weight: 700;
}
.l-header__tel p .phone {
  display: block;
  margin-top: 10px;
  color: var(--accent-color);
  font-size: 1.325rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
}
.l-header__tel .phone .number {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.l-header__tel p .phone .number::before {
  content: "\e0b0";
  width: 50px;
  height: auto;
  font-family: 'Material Icons Outlined';
}
.header-right-title {
  font-size: 1.2rem;
  color: #fff;
  background: var(--sub-color-green01);
  padding: 0.5em 1em;
  border: 1px solid var(--sub-color-green01);
  border-radius: calc(infinity * 1px);
}


.l-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 576px) {
  .l-header__container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1400px) {
  .header-right-title { font-size: 1.5rem; }
}
@media screen and (max-width: 767px) {
  .l-header__tel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    width: 100%;
    padding: 0.5em 1em;
    background-color: var(--sub-color-brown02);
  }
  .l-header__tel p {
  color: var(--base-color);
}
.header-right-title {
  font-size: 1.5rem;
}
.l-header__logo{
  width: 50%;
}

}
@media screen and (max-width: 570px) {
.header-right-title {
  padding: 8px 20px;
}

.l-header__logo{
  width: 100%;
}

  }
  @media screen and (min-width: 768px) {
  .l-header__tel p {
    color: #222222;
  }
  /* .l-header__tel p .phone {
    color: var(--accent-color);
    font-size: 1.625rem;
  } */
  .l-header__tel p .number {
    color: var(--accent-color);
    font-size: 1.3rem;
  }
}

/*============================================================================================================================
main（メイン）
============================================================================================================================*/
/*------------------------------------------------ top-mv ------------------------------------------------------------------*/
.top-mv__left {
  padding-top: 4em;
}
.top-mv__right {
  margin-top: 2em;
}
.top-mv__contents {
  padding: 0 5%;
}
.top-mv__contents-title {
  color: var(--accent-color);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.2;
}
.top-mv__contents-place {
  margin-top: 20px;
  font-size: 1.25rem;
}
.top-mv__contents-button {
  margin-top: 30px;
}
@media screen and (min-width: 576px) {
  .top-mv__inner {
    display: flex;
  }
  .top-mv__left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0 30px;
  }
  .top-mv__right {
    width: 50%;
    margin-top: 0;
  }
  .top-mv__contents-title {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: .1em;
  }
  .top-mv__contents-place {
    margin-top: 20px;
    font-size: 1.25rem;
  }
  .top-mv__contents-button {
    margin-top: 30px;
  }
  .top-mv__contents-button a .text {
    position: relative;
  }
  .top-mv__contents-button a .text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
  }
  .top-mv__contents-button:hover a .text::after {
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
  }
}
@media screen and (min-width: 992px) {
  .top-mv__left {
    width: 40%;
  }
  .top-mv__right {
    width: 60%;
  }
  .top-mv__contents-title {
    font-size: 2.175rem;
  }
}
@media screen and (min-width: 1400px) {
  .top-mv__contents-title {
    font-size: 3.175rem;
  }
}

/*------------------------------------------------ top-news ----------------------------------------------------------------*/
.p-news__list-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.p-news__list-box.left {
  display: flex;
  align-items: center;
}
.p-news__list-box.left .date {
  margin-right: 20px;
}
.p-news__list-box.left .category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 25px;
  padding: 5px 8px;
  color: var(--base-color);
  font-size: 0.85rem;
}
.p-news__list-box.left .category.time {
  background-color: var(--main-color);
}
.p-news__list-box.left .category.important {
  background-color: var(--sub-color-green01);
}
.p-news__list-box.right {
  margin-top: 20px;
  line-height: 1.3;
}
.p-news__list-box.right .title {
  font-weight: 700;
}
.p-news__list-box.right .contents {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .p-news__list-item {
    display: flex;
  }
  .p-news__list-box.left {
    margin-right: 20px;
  }
  .p-news__list-box.right {
    margin-top: 0;
    max-width: 400px;
  }
}

/*------------------------------------------------ top-greeting ------------------------------------------------------------*/
.top-greeting {
  background-color: var(--main-color);
}
.p-greeting__owner {
  margin-top: 20px;
}
.p-greeting__owner-profile .image {
  box-shadow: 0 3px 10px 0 rgb(0 0 0 / 14%);
}
.p-greeting__owner-profile .image img {
  width: 100%;
}
.p-greeting__owner-caption {
  margin-top: 10px;
  line-height: 1.5;
}
.p-greeting__owner-caption .title {
  display: block;
  font-size: 1.0625rem;
}
.p-greeting__owner-caption .name {
  display: block;
  font-size: 1.375rem;
  font-weight: bold;
}
.p-greeting__intro {
  margin-top: 20px;
}
.p-greeting__intro .paragraph {
  font-size: 1.125rem;
  line-height: 2;
}
.p-greeting__intro .paragraph + .paragraph {
  margin-top: 30px;
}
.p-greeting__intro .paragraph .pr {
  color: var(--main-color);
  font-weight: 700;
}
.p-greeting__career {
  margin-top: 30px;
}
.p-greeting__career-box {
  padding: 1em;
  border: 1px solid #ccc;
  box-shadow: 0 3px 10px 0 rgb(0 0 0 / 14%);
}
.p-greeting__career-title {
  display: inline-block;
  padding-bottom: 5px;
  font-size: 1rem;
  border-bottom: 2px solid var(--sub-color-brown01);
}
.p-greeting__career-list {
  margin-top: 30px;
}
.p-greeting__career-list li {
  display: flex;
  line-height: 1.5;
}
.p-greeting__career-list li + li {
  margin-top: 20px;
}
.p-greeting__career-list li::before {
  content: "\02022";
  margin-right: 10px;
}
.p-greeting__career-list li .year {
  display: inline-block;
  max-width: 80px;
  width: 100%;
}
.p-greeting__career-list li .text {
  display: inline-block;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .p-greeting__intro {
    margin-top: 0;
  }
  .p-greeting__career {
    margin-top: 50px;
  }
  .p-greeting__career-box + .p-greeting__career-box {
    margin-top: 0;
  }
}

/*------------------------------------------------ top-time ----------------------------------------------------------------*/
.top-time {
  background: var(--main-color);
}
.p-time__holiday {
  color: #FFF;
  margin-top: 20px;
}
.p-time__table {
  margin-top: 20px;
}
.p-time__info {
  margin-top: 50px;
  padding: 20px;
  font-size: 1.125rem;
  background-color: #FFF;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  line-height: 2;
  text-align: center;
}
.p-time__info .month {
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .p-time__table {
    margin-top: 0;
  }
}

/*------------------------------------------------ top-access ---------------------------------------------------------------*/
.p-access__address {
  margin-top: 20px;
}
.p-access__address .text {
  line-height: 1.5;
}
.p-access__address .text + .text {
  margin-top: 1em;
}
.p-access__address .text.strong {
  font-weight: 700;
}
.p-access__address .button {
  margin-top: 30px;
  text-align: center;
}
.p-access__map {
  margin-top: 20px;
}
.p-access__map iframe {
  width: 100%;
  height: 300px;
}
.p-access__info {
  margin-top: 40px;
}
.p-access__info-box + .p-access__info-box {
  margin-top: 20px;
}
.p-access__info-list .title::before {
  content: "\025a0";
  margin-right: 5px;
  color: var(--accent-color);
}
.p-access__info-list .title {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent-color);
}
.p-access__info-list .desc {
  margin-top: 10px;
  line-height: 1.5;
}
.p-access__info-traffic .transport + .transport {
  margin-top: 10px;
}
.p-access__info-image {
  margin-top: 20px;
  max-width: 400px;
}
.p-access__info-image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__address .button {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .p-access__map {
    margin-top: 0;
  }
  .p-access__map iframe {
    height: 500px;
  }
  .p-access__info {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .p-access__info-list {
    width: 48%;
    margin-right: 2em;
  }
  .p-access__info-image {
    margin-top: 0;
  }
}



/*============================================================================================================================
footer
============================================================================================================================*/
.l-footer {
  padding: 30px 0;
  background: var(--main-color);
}
.l-footer .copyright {
  color: #333;
  text-align: center;
}