@charset "UTF-8";

/*
====================================================================================================
■ basic setting
 □ tag
 □ class
■ additional
■ layout
 □ #site_header
 □ main
 □ #sub_area
 □ #site_footer
----------------------------------------------------------------------------------------------------
※ 基本的にテンプレとしての簡易な整形レベルです。必ずサイトに合わせて各種設定を見直すこと。
※ font-sizeに関しては、リセット後、#wrapperに18px相当で指定済。そこからの相対指定で行うこと。
　（親要素に既に%指定済の場合、子孫要素は基準が変わるので注意してください。）
※ サイト制作後、不要と思われるコメントはなるべく削除し整理すること。
==================================================================================================== */
/*
====================================================================================================
■ basic setting
----------------------------------------------------------------------------------------------------
 □ tag
---------------------------------------------------------------------------------------------------- */
html {
  background-color: #fff;
  /* 画面外背景色 */
  font-family: "Noto Sans Japanese", "Meiryo", "メイリオ", "MS PGothic",
    "MS Pゴシック", sans-serif;
}

body {
  position: relative;
  margin: 0 auto;
  color: #242424;
  word-wrap: break-word;
}

p, li, pre, td, th, dt, dd {
  line-height: 1.5;
}

/*
====================================================================================================
■ layout
---------------------------------------------------------------------------------------------------- */
#wrapper {
  width: 100%;
  /* サイトの実際の横幅（640px以下は画面サイズによって変動） */
  max-width: 480px;
  min-width: 320px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  word-wrap: break-word;
}

/*
----------------------------------------------------------------------------------------------------
 □ #site_header
---------------------------------------------------------------------------------------------------- */
.sp-h-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 3%;
}

.sp-h-sec .owl-in-home {
  flex-shrink: 0;
  width: 20%;
}

.sp-h-side {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: min(9.5px, calc((9.5/480) * 100vw));
}

.sp-h-side .icon {
  flex-shrink: 0;
  width: min(40px, calc((40/480) * 100vw));
  &.insta a {
    display: block;
    padding: 5%;
  }
}

.sp-h-side .link a {
  display: inline-block;
  color: inherit;
  font-family: "Crimson Text", serif;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1.125;
}

.sp-h-side img {
  width: 100%;
}

.menubtn {
  cursor: pointer;
  z-index: 9999;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-align: center;
  vertical-align: bottom;
  line-height: 1;
}

.menubtn img:first-child {
  display: block;
}

.menubtn img:last-child {
  display: none;
}

.opened .menubtn img:first-child {
  display: none !important;
}

.opened .menubtn img:last-child {
  display: block !important;
}

.banner {
  border-top: 1px solid #000;
}

.menu-hidden {
  width: 100%;
  position: absolute;
  display: none;
  z-index: 997;
  margin-top: 16%;
  top: 0;
}

.menu-hidden .close {
  position: absolute;
  right: 7%;
  width: 11%;
  top: -1%;
  margin-top: 1%;
}

.menu-hidden .close img {
  width: 100%;
}

.menu-hidden ul {
  background: #000;
}

.menu-hidden ul li {
  border-bottom: 1px solid #fff;
  padding: 2% 0;
  text-align: center;
}

.menu-hidden ul li a {
  text-decoration: none;
  color: #fff;
  width: 100%;
  position: relative;
  font-size: 16px;
}

.menu-hidden ul li a::before {
  content: "";
  position: absolute;
  background: url("../images/ic_menu_head.png") left center no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  left: 0;
  top: 5%;
}

/*
--------------------------------------------------
 ▽ #gnav （グローバルナビゲーション）
-------------------------------------------------- */
/*
----------------------------------------------------------------------------------------------------
  □ #sub_area
---------------------------------------------------------------------------------------------------- */
/*
----------------------------------------------------------------------------------------------------
 □ #site_footer
---------------------------------------------------------------------------------------------------- */
.sg_footer {
  text-align: center;
}

.sg_footer h3 {
  font-size: 17px;
  background-color: #000000;
  padding: 3%;
  color: #fff;
  position: relative;
  border-bottom: 1px solid #fff;
}

.sg_footer h3::after {
  content: "";
  background: url("../images/menu_ft.png") right 25px center no-repeat;
  background-size: 40%;
  position: absolute;
  width: 80px;
  height: 40px;
  right: 0;
  top: 10%;
}

.sg_footer .site_map {
  position: relative;
}

.sg_footer .menu_ft {
  display: none;
  border-top: none;
  border-bottom: none;
  background: #000;
  position: absolute;
  width: 100%;
  bottom: 100%;
}

.sg_footer .menu_ft li {
  padding: 2% 0;
  border-bottom: 1px solid #fff;
}

.sg_footer .menu_ft li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.sg_footer .menu_ft li ul li {
  border: none;
  text-align: left;
}

.sg_footer .logo {
  background: #323232;
  color: #fff;
  padding: 8% 0;
}

.sg_footer .logo h4 {
  width: 50%;
  margin: 0 auto 4% auto;
}

.sg_footer .logo ul li {
  margin: 4% 0 0 0;
}

.sg_footer .logo ul li a img {
  width: 60%;
}

p.pc_ft img {
  width: 100%;
}

.menu_head,
.menu_head_one {
  display: none;
}

.click_one,
.click_two {
  position: relative;
}

.page_up {
  position: fixed;
  right: -550px;
  bottom: 36%;
  z-index: 999;
  width: 15%;
}



/*
----------------------------------------------------------------------------------------------------
 □ utility class
---------------------------------------------------------------------------------------------------- */

/* このブルーはリンク色のブルーとは色味を若干変える事を推奨 */
.text_yellow { color: #feab0f !important; }
.text_white { color: #f0f0f0 !important; }
.text_purple { color: #b992ed !important; }
.text_orange { color: #f29475 !important; }

.pull-left { float: left; } .pull-right { float: right; } .text_left { text-align: left !important; } .text_right { text-align: right !important; } .text_center { text-align: center !important; } .text_justify { text-align: justify !important; } .text_nowrap { white-space: nowrap !important; } .text_lowercase { text-transform: lowercase !important; } .text_uppercase { text-transform: uppercase !important; } .text_capitalize { text-transform: capitalize !important; } .text_muted { color: #777 !important; } .text_normal { font-weight: normal !important; } .text_bold { font-weight: bold !important; } .text_red { color: #e75942 !important; } .text_black { color: #000000 !important; } .text_grey { color: #999999 !important; } .text_pink { color: #f66b82 !important; } .text_green { color: #8a9941 !important; } .text_blue { color: #00a2c6 !important; } .f10 { font-size: 55.6% !important; } .f11 { font-size: 61.2% !important; } .f12 { font-size: 66.7% !important; } .f13 { font-size: 72.3% !important; } .f14 { font-size: 72.3% !important; } .f15 { font-size: 83.4% !important; } .f16 { font-size: 88.9% !important; } .f17 { font-size: 94.5% !important; } .f18 { font-size: 100% !important; } .f19 { font-size: 105.6% !important; } .f20 { font-size: 111.2% !important; } .f21 { font-size: 116.7% !important; } .f22 { font-size: 122.3% !important; } .f23 { font-size: 127.8% !important; } .f24 { font-size: 133.4% !important; } .f25 { font-size: 138.9% !important; }
 .m00 { margin: 0px !important; } .m05 { margin: 5px !important; } .m10 { margin: 10px !important; } .m15 { margin: 15px !important; } .m20 { margin: 20px !important; } .m25 { margin: 25px !important; } .m30 { margin: 30px !important; } .m35 { margin: 35px !important; } .m40 { margin: 40px !important; } .m45 { margin: 45px !important; } .mt00 { margin-top: 0px !important; } .mt05 { margin-top: 5px !important; } .mt10 { margin-top: 10px !important; } .mt15 { margin-top: 15px !important; } .mt20 { margin-top: 20px !important; } .mt25 { margin-top: 25px !important; } .mt30 { margin-top: 30px !important; } .mt35 { margin-top: 35px !important; } .mt40 { margin-top: 40px !important; } .mt45 { margin-top: 45px !important; } .mr00 { margin-right: 0px !important; } .mr05 { margin-right: 5px !important; } .mr10 { margin-right: 10px !important; } .mr15 { margin-right: 15px !important; } .mr20 { margin-right: 20px !important; } .mr25 { margin-right: 25px !important; } .mr30 { margin-right: 30px !important; } .mr35 { margin-right: 35px !important; } .mr40 { margin-right: 40px !important; } .mr45 { margin-right: 45px !important; } .mb00 { margin-bottom: 0px !important; } .mb05 { margin-bottom: 5px !important; } .mb10 { margin-bottom: 10px !important; } .mb15 { margin-bottom: 15px !important; } .mb20 { margin-bottom: 20px !important; } .mb25 { margin-bottom: 25px !important; } .mb30 { margin-bottom: 30px !important; } .mb35 { margin-bottom: 35px !important; } .mb40 { margin-bottom: 40px !important; } .mb45 { margin-bottom: 45px !important; } .mb50 { margin-bottom: 50px !important; } .ml00 { margin-left: 0px !important; } .ml05 { margin-left: 5px !important; } .ml10 { margin-left: 10px !important; } .ml15 { margin-left: 15px !important; } .ml20 { margin-left: 20px !important; } .ml25 { margin-left: 25px !important; } .ml30 { margin-left: 30px !important; } .ml35 { margin-left: 35px !important; } .ml40 { margin-left: 40px !important; } .ml45 { margin-left: 45px !important; } .ml50 { margin-left: 50px !important; } .p00 { padding: 0px !important; } .p05 { padding: 5px !important; } .p10 { padding: 10px !important; } .p15 { padding: 15px !important; } .p20 { padding: 20px !important; } .p25 { padding: 25px !important; } .p30 { padding: 30px !important; } .p35 { padding: 35px !important; } .p40 { padding: 40px !important; } .p45 { padding: 45px !important; } .pt00 { padding-top: 0px !important; } .pt05 { padding-top: 5px !important; } .pt10 { padding-top: 10px !important; } .pt15 { padding-top: 15px !important; } .pt20 { padding-top: 20px !important; } .pt25 { padding-top: 25px !important; } .pt30 { padding-top: 30px !important; } .pt35 { padding-top: 35px !important; } .pt40 { padding-top: 40px !important; } .pt45 { padding-top: 45px !important; } .pr00 { padding-right: 0px !important; } .pr05 { padding-right: 5px !important; } .pr10 { padding-right: 10px !important; } .pr15 { padding-right: 15px !important; } .pr20 { padding-right: 20px !important; } .pr25 { padding-right: 25px !important; } .pr30 { padding-right: 30px !important; } .pr35 { padding-right: 35px !important; } .pr40 { padding-right: 40px !important; } .pr45 { padding-right: 45px !important; } .pb00 { padding-bottom: 0px !important; } .pb05 { padding-bottom: 5px !important; } .pb10 { padding-bottom: 10px !important; } .pb15 { padding-bottom: 15px !important; } .pb20 { padding-bottom: 20px !important; } .pb25 { padding-bottom: 25px !important; } .pb30 { padding-bottom: 30px !important; } .pb35 { padding-bottom: 35px !important; } .pb40 { padding-bottom: 40px !important; } .pb45 { padding-bottom: 45px !important; } .pl00 { padding-left: 0px !important; } .pl05 { padding-left: 5px !important; } .pl10 { padding-left: 10px !important; } .pl15 { padding-left: 15px !important; } .pl20 { padding-left: 20px !important; } .pl25 { padding-left: 25px !important; } .pl30 { padding-left: 30px !important; } .pl35 { padding-left: 35px !important; } .pl40 { padding-left: 40px !important; } .pl45 { padding-left: 45px !important; } .r03 { border-radius: 3px; } .r04 { border-radius: 4px; } .r05 { border-radius: 5px; } .r06 { border-radius: 6px; } .r07 { border-radius: 7px; } .r08 { border-radius: 8px; } .r09 { border-radius: 9px; } .r10 { border-radius: 10px; } .r11 { border-radius: 11px; } .r12 { border-radius: 12px; } .r13 { border-radius: 13px; } .r14 { border-radius: 14px; } .r15 { border-radius: 15px; } .r16 { border-radius: 16px; } .r17 { border-radius: 17px; } .r18 { border-radius: 18px; } .r19 { border-radius: 19px; } .r20 { border-radius: 20px; }  .w10 { width: 10% !important; } .w20 { width: 20% !important; } .w30 { width: 30% !important; } .w40 { width: 40% !important; } .w45 { width: 45% !important; } .w50 { width: 50% !important; } .w60 { width: 60% !important; } .w70 { width: 70% !important; } .w80 { width: 80% !important; } .w90 { width: 90% !important; } .w100 { width: 100% !important; }

 /*
--------------------------------------------------
 ▽ 1カラムコンテンツ
-------------------------------------------------- */
.col01 figure { margin: 0 auto 10px; }

/*
--------------------------------------------------
 ▽ 左右均等2カラムコンテンツ
-------------------------------------------------- */
.col02:after { display: block; clear: both; content: ""; }
.col02 .float_l, .col02 .float_r { width: 50%; box-sizing: border-box;}
.col02 .float_l { padding-right: 1%; }
.col02 .float_r { padding-left: 1%; }

/*
--------------------------------------------------
 ▽ 2カラムコンテンツ(ul liの場合)
-------------------------------------------------- */
/* 左右2カラムデザイン（※ulに.col02を追加する事で切り替え） */
.col02>li { width: 50%; box-sizing: border-box; margin-bottom: 10px; }
.col02>li:nth-of-type(2n-1) { padding-right: 1%; float: left; clear: both; }
.col02>li:nth-of-type(2n) { padding-left: 1%; float: right; }
.col02 figure { margin-bottom: 10px; }

/*
--------------------------------------------------
 ▽ 3カラムコンテンツ(ul liの場合)
-------------------------------------------------- */
/* 3カラムデザイン（※ulに.col03を追加する事で切り替え） */
.col03:after { display: block; clear: both; content: ""; }
.col03>li { width: 32%; box-sizing: border-box; margin-bottom: 10px; float: left; }
.col03>li:nth-of-type(3n-2) { clear: both; }/* 左(3)カラム *//* 中央(2)カラム */
.col03>li:nth-of-type(3n-1) { margin-inline: 2%; }

/*
--------------------------------------------------
 ▽ 新着などのページネーション
-------------------------------------------------- */
.pagination { padding: 0 2%; }
.pagination a { line-height: 42px; }
.pagination .page_prev { float: left; }
.pagination .page_next { float: right; }
.pagination .page_back { text-align: center; }
/*
====================================================================================================
■ additional
---------------------------------------------------------------------------------------------------- */
.acco_box { clear: both; margin-bottom: 10px; }
.acco_dv { display: none; }
.acco_a { cursor: pointer; }
.media_txt .img { width: 40%; }
.media_txt .img img { width: 100%; height: auto; }
.pic_l .img { float: left; margin-right: 10px; }
.pic_r .img { float: right; margin-left: 10px; }

.box_maxheight .maxheight_hide { display: none; }
.box_maxheight .maxheight_btn { text-decoration: underline; cursor: pointer; color: #0091b2; display: inline-block; }

.flex { display: flex; } .flex_jus_start { justify-content: flex-start; } .flex_jus_end { justify-content: flex-end; } .flex_jus_center { justify-content: center; } .flex_jus_between { justify-content: space-between; } .flex_jus_around { justify-content: space-around; } .flex_jus_ini { justify-content: initial; } .flex_align_item_start { align-items: flex-start; } .flex_align_item_end { align-items: flex-end; } .flex_align_item_stretch { align-items: stretch; } .flex_align_item_baseline { align-items: baseline; } .flex_align_item_center { align-items: center; } .flex_align_item_ini { align-items: initial; } .flex_container { flex-wrap: wrap; }

.add_font {
  font-family: "Noto Sans Japanese", "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", sans-serif;
}
