@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

.al-right {
  text-align: right;
}

.al-left {
  text-align: left;
}

.al-center {
  text-align: center;
}

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 50px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 15px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 599px) {
  .mt70 {
    margin-top: 45px !important;
  }
}

.header-logo {
  max-width: 250px;
  position: absolute;
  top: 30px;
  left: 30px;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .header-logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    max-width: 200px;
    top: 20px;
    left: 15px;
  }
}

.footer {
  background-color: #c11732;
  padding: 110px 30px 100px;
}
@media screen and (max-width: 1400px) {
  .footer {
    padding: 100px 30px 90px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 90px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 60px 20px 40px;
  }
}

.footer-inner {
  max-width: 1430px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 599px) {
  .footer-inner {
    margin: 0 auto 30px;
  }
}

.footer-block01 {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-block01 {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-block01 {
    margin-bottom: 35px;
  }
}

.footer-block02 {
  max-width: 410px;
}
@media screen and (max-width: 1400px) {
  .footer-block02 {
    max-width: 350px;
  }
}

.footer-logo {
  padding-right: 70px;
}
@media screen and (max-width: 1400px) {
  .footer-logo {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}
.footer-logo img {
  width: 100%;
  max-width: 252px;
}
@media screen and (max-width: 599px) {
  .footer-logo img {
    max-width: 220px;
  }
}

.footer-address {
  border-left: 1px solid rgba(224, 224, 224, 0.5);
  padding-left: 60px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .footer-address {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-address {
    padding-left: 0;
    border-left: 0;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
  }
}
.footer-address__text01 {
  margin-bottom: 14px;
}
.footer-address__text02 {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 14px;
}
.footer-address__text03 {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 1025px) {
  .footer-sitelink:hover {
    opacity: 0.8;
  }
}

.footer-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.3);
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  max-width: 60px;
}
@media screen and (max-width: 599px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
    max-width: 40px;
  }
}

.cl-bg {
  background-color: #fbf2e8;
}

/*--------------------------------------------------------
animation
----------------------------------------------------------*/
/*アニメーション*/
@keyframes zoomIn_copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein-no-js {
  animation-name: zoomIn_copy;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
}

.fadein--on {
  animation-name: zoomIn_copy;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 1025px) {
  .deley01 {
    animation-delay: 0.1s;
  }
  .deley02 {
    animation-delay: 0.2s;
  }
  .deley03 {
    animation-delay: 0.3s;
  }
  .deley04 {
    animation-delay: 0.4s;
  }
  .deley05 {
    animation-delay: 0.5s;
  }
  .deley06 {
    animation-delay: 0.6s;
  }
  .deley07 {
    animation-delay: 0.7s;
  }
  .deley08 {
    animation-delay: 0.8s;
  }
  .deley09 {
    animation-delay: 0.9s;
  }
  .deley10 {
    animation-delay: 1s;
  }
  .deley11 {
    animation-delay: 1.1s;
  }
  .deley12 {
    animation-delay: 1.2s;
  }
}
/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-contents {
  background-image: url(../img/top/bg05.webp), url(../img/top/bg04.webp), url(../img/top/bg03.webp), url(../img/top/bg02.webp), url(../img/top/bg01.webp);
  background-repeat: no-repeat;
  background-position: right 0 top 600px, right 30% top 400px, right 0 top 0, left 90px top 460px, left 33% top 70px;
}
@media screen and (max-width: 1024px) {
  .top-contents {
    background-position: right 0 top 520px, left -180px top 700px, right 0 top 0, left 20% top 250px, left -20px top -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-contents {
    background-position: right 0 top 530px, left -50px top 750px, right 0 top 0, left 20% top 200px, left -20px top -30px;
    background-size: 100px auto, 150px auto, 130px auto, 150px auto, 200px auto;
  }
}

.top-main {
  padding: 270px 30px 0;
}
@media screen and (max-width: 1400px) {
  .top-main {
    padding: 200px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    padding: 145px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    padding: 105px 20px 0;
  }
}
.top-main__inner {
  max-width: 1430px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-main__inner {
    padding: 47% 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main__inner {
    padding: 62% 0 0;
  }
}
.top-main__title {
  margin-bottom: 45px;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-size: 2.9rem;
  font-weight: 500;
  color: #404040;
  letter-spacing: 0.04em;
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .top-main__title {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title {
    font-size: min(5.5vw, 1.9rem);
    margin-bottom: 30px;
  }
}
.top-main__title > span {
  color: #c11732;
  font-family: "EB Garamond", serif;
  font-size: 14.6rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .top-main__title > span {
    font-size: 12rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__title > span {
    font-size: min(24vw, 8.8rem);
  }
}
.top-main__text-box {
  max-width: 450px;
  margin: 0 auto 80px;
  font-size: 1.8rem;
  color: #c11732;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 600;
  letter-spacing: 0;
  text-align: justify;
  line-height: 2;
  opacity: 0;
}
@media screen and (max-width: 1400px) {
  .top-main__text-box {
    font-size: 1.7rem;
    max-width: 430px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__text-box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__text-box {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
.top-main__photo01 {
  position: absolute;
  top: -50px;
  left: 0;
  width: calc((100% - 540px) / 2);
  opacity: 0;
}
.top-main__photo01 img {
  box-shadow: 20px 20px 0 #c11732;
}
@media screen and (max-width: 1400px) {
  .top-main__photo01 {
    width: calc((100% - 620px) / 2);
  }
  .top-main__photo01 img {
    box-shadow: 10px 10px 0 #c11732;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__photo01 {
    top: 0;
    left: 60px;
    width: calc((100% - 230px) / 2);
  }
  .top-main__photo01::after {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .top-main__photo01 img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo01 {
    left: 0;
    width: calc((100% - 40px) / 2);
  }
  .top-main__photo01 img {
    box-shadow: 7px 7px 0 #c11732;
  }
}
.top-main__photo02 {
  position: absolute;
  top: -180px;
  right: 0;
  width: calc((100% - 540px) / 2);
  text-align: right;
  padding-right: 20px;
  opacity: 0;
}
.top-main__photo02 img {
  box-shadow: 20px 20px 0 #c11732;
}
@media screen and (max-width: 1400px) {
  .top-main__photo02 {
    top: -140px;
    width: calc((100% - 610px) / 2);
  }
  .top-main__photo02 img {
    box-shadow: 10px 10px 0 #c11732;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__photo02 {
    top: 60px;
    right: 60px;
    width: calc((100% - 230px) / 2);
    padding-right: 0;
  }
  .top-main__photo02::after {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .top-main__photo02 img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo02 {
    top: 30px;
    right: 0;
    width: calc((100% - 40px) / 2);
  }
  .top-main__photo02 img {
    box-shadow: 7px 7px 0 #c11732;
  }
}

.top-graduate-wrapper {
  padding: 0 30px 160px;
}
@media screen and (max-width: 1400px) {
  .top-graduate-wrapper {
    padding: 0 30px 140px;
  }
}
@media screen and (max-width: 1024px) {
  .top-graduate-wrapper {
    padding: 0 30px 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-wrapper {
    padding: 0 20px 60px;
  }
}
.top-graduate-wrapper__inner {
  max-width: 1430px;
  margin: 0 auto;
}

.top-notice {
  font-size: 1.3rem;
  display: flex;
  justify-content: end;
  margin-bottom: 80px;
  color: #7c7a78;
}
@media screen and (max-width: 1024px) {
  .top-notice {
    justify-content: left;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-notice {
    margin-bottom: 70px;
  }
}

.top-graduate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 90px 40px;
}
@media screen and (max-width: 1280px) {
  .top-graduate-list {
    gap: 80px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-graduate-list {
    gap: 90px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-list {
    gap: 50px 40px;
  }
}

.top-graduate-item {
  width: calc((100% - 80px) / 3);
  background-color: #fff;
  padding: 50px 40px 60px;
  box-shadow: 10px 10px 0 #f4e9dc;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-graduate-item {
    padding: 50px 25px 60px;
  }
}
@media screen and (max-width: 1280px) {
  .top-graduate-item {
    width: calc((100% - 60px) / 3);
    padding: 40px 20px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-graduate-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-item {
    width: 100%;
    padding: 35px 20px 40px;
    box-shadow: 7px 7px 0 #f4e9dc;
  }
}
.top-graduate-item::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -30px;
  width: 209px;
  height: 57px;
  background-image: url(../img/top/graduate.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .top-graduate-item::before {
    left: -20px;
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-item::before {
    width: 170px;
    height: 50px;
    top: -30px;
    left: 0;
  }
}
.top-graduate-item__head {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__head {
    margin-bottom: 15px;
  }
}
.top-graduate-item__photo {
  width: 44%;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__photo {
    width: 40%;
  }
}
.top-graduate-item__photo img {
  border-radius: 3px;
}
.top-graduate-item__photo .cap {
  margin-top: 2px;
  font-size: 1.2rem;
  color: #595959;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__photo .cap {
    font-size: 1.1rem;
  }
}
.top-graduate-item__textbox01 {
  width: 56%;
  padding: 0 0 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .top-graduate-item__textbox01 {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top-graduate-item__textbox01 {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-item__textbox01 {
    width: 60%;
    padding: 0 0 0 15px;
  }
}
.top-graduate-item__job {
  font-family: "Shippori Mincho", serif !important;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__job {
    margin-bottom: 8px;
  }
}
.top-graduate-item__name {
  font-size: 2.5rem;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3px;
}
@media screen and (max-width: 1280px) {
  .top-graduate-item__name {
    font-size: 1.88vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-graduate-item__name {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-graduate-item__name {
    font-size: 2.2rem;
  }
}
.top-graduate-item__name span {
  font-size: 1.3rem;
  margin-left: 3px;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__name span {
    font-size: 1.1rem;
  }
}
.top-graduate-item__en {
  font-family: "EB Garamond", serif;
  color: #dd8484;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__en {
    font-size: 1.3rem;
  }
}
.top-graduate-item__school {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ededed;
}
@media screen and (max-width: 599px) {
  .top-graduate-item__school {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.top-graduate-item__school > p {
  line-height: 1.3;
  font-family: "Shippori Mincho", serif !important;
  font-size: 1.5rem;
  padding-left: 0.9em;
  position: relative;
}
.top-graduate-item__school > p::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.top-graduate-item__textbox02 {
  font-family: "Shippori Mincho", serif !important;
  font-size: 1.5rem;
  line-height: 1.5;
}
.top-graduate-item__keisai {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 1.3rem;
  color: #a8a6a4;
}/*# sourceMappingURL=style.css.map */