@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@200..900&display=swap');

/*リセットCSS
----------------------------------------------------------------*/

/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
  list-style: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*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:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
  -webkit-transition: opacity 0.7s ease;
  -moz-transition: opacity 0.7s ease;
  -o-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

a:hover {
  color: inherit;
}

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


/*基本設定
----------------------------------------------------------------*/

/*  配置  */
.flex-nml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.flex-btw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.items-center {
  -webkit-align-items: center;
  align-items: center;
}

.items-start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.items-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  width: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 17px;
  }
}

body a {
  transition: 0.2s;
  color: #171717;
}

.tategaki {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}


/* margin */
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 10px;
}

.mb30 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 50px;
}

.mb70 {
  margin-bottom: 40px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb120 {
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .mb20 {
    margin-bottom: 20px;
  }

  .mb30 {
    margin-bottom: 30px;
  }

  .mb40 {
    margin-bottom: 40px;
  }

  .mb50 {
    margin-bottom: 50px;
  }

  .mb60 {
    margin-bottom: 60px;
  }

  .mb70 {
    margin-bottom: 70px;
  }

  .mb80 {
    margin-bottom: 80px;
  }

  .mb100 {
    margin-bottom: 100px;
  }

  .mb120 {
    margin-bottom: 120px;
  }

}

/*============================
    flex
============================*/

.flex__text {
  width: 100%;
}

.flex__img {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width:768px) {

  .flex__text {
    width: 48%;
  }

  .flex__img {
    width: 50%;
    margin-bottom: 0;
  }
}

/* はみ出すflex */

.flexbox__text {
  width: 100%;
}

.flexbox__img__l,
.flexbox__img__r {
  /* flex: auto; */
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width:1024px) {

  /* 画像左 */

  .flexbox__img__l {
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 2%;
    margin-bottom: 0;
  }

  /* 画像右 */
  .flexbox__img__r {
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 2%;
    margin-bottom: 0;
  }

  .flexbox__text {
    width: 45%;
  }
}



/*============================
    setting
============================*/

/* -------inner------- */
.inner {
  width: 92%;
  margin: 0 auto;
}

.inner__middle {
  width: 92%;
  margin: 0 auto;
}

.inner__large {
  width: 92%;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .inner {
    width: 94%;
  }

  .inner__middle {
    width: 94%;
  }

  .inner__large {
    width: 94%;
  }
}

@media screen and (min-width:1024px) {
  .inner {
    max-width: 1280px;
    width: 96%;
  }

  .inner__middle {
    max-width: 1400px;
    width: 96%;
  }


  .inner__large {
    max-width: 1720px;
    width: 97%;
  }
}


/* ------ font ------ */

.font-en {
  font-family: "Cormorant Infant", serif;
}

.lh {
  line-height: 2;
}

.ta-c {
  text-align: center;
}

.ta-c02 {
  text-align: left;
}

.fw-b {
  font-weight: bold;
}

.f-32 {
  font-size: 20px;
}

.f-26 {
  font-size: 18px;
}

.f-24 {
  font-size: 16px;
}

.f-20 {
  font-size: 15px;
}

.f-18 {
  font-size: 15px;
}
.f-14 {
  font-size: 13px;
}

@media screen and (min-width:768px) {
  .ta-c02 {
    text-align: center;
  }

  .f-32 {
    font-size: 24px;
  }

  .f-26 {
    font-size: 20px;
  }

  .f-24 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .f-32 {
    font-size: 32px;
  }

  .f-26 {
    font-size: 26px;
  }

  .f-24 {
    font-size: 24px;
  }

  .f-20 {
    font-size: 20px;
  }

  .f-18 {
    font-size: 18px;
  }

  .f-14 {
    font-size: 14px;
  }

}



/* -------position------- */

.ps-r {
  position: relative;
}

.ps-a {
  position: absolute;
}

/* -------list------- */
.list-style {
  padding-left: 1em;
  position: relative;
}

.list-style::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50vh;
  background-color: #800000;
  position: absolute;
  top: 10px;
  left: 0.2em;
}



/* -------color setting------- */
.color01 {
  color: #800000;
}

.wh {
  color: #fff;
}

.bg {
  background-color: #343029;
}

.link {
  font-weight: 600;
  color: #800000;
}


/* ------ title ------ */

.section__title {
  position: relative;
  text-align: center;
}

.section__title::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: #800000;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.section__title .font-en {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section__title .font-jp {
  font-size: 16px;
}

.section__title02 {
  position: relative;
  text-align: center;
}

.section__title02::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background: #800000;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.section__title02 .font-en {
  font-size: 30px;
  letter-spacing: 0.04em;
  font-variant: small-caps;
  margin-bottom: 10px;
}

.section__title02 .font-jp {
  font-size: 16px;
}

.section__title03 {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}

.section__title03::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: #cccccc;
  margin-left: 2rem;
}

.section__title03 .font-jp {
  font-size: 16px;
  letter-spacing: 0.15em;
  position: relative;
}



@media screen and (min-width:768px) {

  .section__title .font-en {
    font-size: 50px;
  }

  .section__title02 .font-en {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .section__title02 .font-jp {
    font-size: 18px;
  }

  .section__title03 .font-jp {
    font-size: 18px;
  }
}


@media screen and (min-width: 1024px) {
  .section__title .font-en {
    font-size: 80px;
  }

  .section__title .font-jp {
    font-size: 18px;
  }

  .section__title02 .font-en {
    font-size: 80px;
    margin-bottom: 30px;
  }

  .section__title03 .font-jp {
    font-size: 30px;
  }
}


/* ------ btn ------ */

.btn01 {
  position: relative;
  width: 300px;
  height: 60px;
  margin-inline: auto;
  z-index: 99;
}

.btn01 a {
  display: block;
  color: #800000;
  border: 1px solid #800000;
  text-align: center;
  font-size: 14px;
  transition: .4s ease-out;
  width: 300px;
  height: 60px;
  line-height: 60px;
  background: #fff;
}

.btn01::before {
  content: "";
  position: absolute;
  background: url(../images/btn_line.png) no-repeat;
  background-size: contain;
  width: 300px;
  height: 59px;
  right: -5px;
  bottom: -5px;
  transition: .4s ease-out;
  z-index: -1;
}

.btn01:hover::before {
  right: 0;
  bottom: 0;
  transition: .4s ease-out;
}

.btn02 a {
  display: inline-block;
  border: 1px solid #b30000;
  background: #fff;
  color: #b30000;
  text-align: center;
  font-size: 14px;
  position: relative;
  transition: .4s ease-out;
  width: 300px;
  height: 60px;
  line-height: 60px;
  border-radius: 40px;
}

.btn02 a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 19px;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: .4s ease-out;
}

.btn02 a:hover::before {
  right: 20px;
  transition: .4s ease-out;
}

@media screen and (min-width: 768px) {
  .btn01 a {
    width: 300px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }

  .btn02 a {
    width: 320px;
    height: 60px;
    line-height: 60px;
  }
}

/* ------- btn small ------*/
.btn-small {
  width: 250px;
  height: 50px;
}

.btn-small a {
  display: block;
  line-height: 50px;
  color: #fff;
  background: #726e69;
  text-align: center;
  position: relative;
}

.btn-small p {
  color: #fff;
}

@media screen and (min-width: 768px) {
  /* .btn-small {
    height: 50px;
    margin-inline: auto;
  }

  .btn-small a {
    line-height: 50px;
  }

  .btn_wrap {
    column-gap: 30px;
  } */
}

@media screen and (min-width: 1400px) {
  .section__title04 .font-en02 {
    margin-top: 100%;
  }}
@media screen and (min-width:1380px) and ( max-width:1399px) {
    .section__title04 .font-en02 {
    margin-top: 80%;
  }}
@media screen and (min-width:1100px) and ( max-width:1379px) {
    .section__title04 .font-en02 {
    margin-top: 10%;
  }}
