@charset "UTF-8";
/*
Theme Name:t-holder
Theme URI:
Description:t-holderの専用テンプレートです。
Author:koshimizu ayako
Version:1.0 2025.11.19
*/

/* iphone リセット*/
input[type="submit"],
input[type="button"],
input[type="reset"]{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus{
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, select, textarea{
    border: none;
    outline: none;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    color-scheme: light;
  }


/********* base *********/
body{
    position: relative;
    color: #000;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-size: 18px;
}

header {
    width: 100%;
    max-width: 100%;
    position: fixed;
    padding-top: 1.4%;
    left: 3px;
    z-index: 5;
    top: 0;
}

header h1.logo{
    width: 26%;
    max-width: 191px;
    margin-bottom: 0;
}

.sp{display: none;}

h1,h2,h3,h4{
    overflow-wrap: anywhere;
    text-wrap: auto;
    word-break: break-word;
}

@media screen and (max-width: 768px) {
    body{
        font-size: 15px;
    }
    .sp{display: block;}
    .pc{display: none;}
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
button span{
    display: inline-block;
    font-size: 12px;
    text-align: center;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.m-btn {
    position: fixed;
    top: 6px;
    right: 10px;
    z-index: 10;
    width: 37px;
    height: 37px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 3px;
	/* バーガー線の色 */
    background-color: #42bd9d;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: .5s;
    display: inline-block;
    bottom: 5px;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}

button span.text {
    line-height: 1;
    margin-top: 12px;
    display: inline-block;
    position: absolute;
}


/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
    background-color: #333;
    transition: .2s;
    left: 0;
    top: 0;
}

.btn-line.open::before{
    content: "";
    background-color: #333;
    transition: .2s;
    position: absolute;
    left: 0;
    top: 0;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(90deg);
}
.btn-line.open {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}


.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -101%;
	width: 101%;
	height: 100vh;
	background-color: #42bd9d;
	color: #efefef;
	transition: .3s;
    top: 0;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
}
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 769px) {
	.m-btn {
		display: none;
	}

    header {
        width: 20%;
        height: 30vh;
        max-width: 300px;
        position: sticky;
        padding: 0;
        top: 10.5%;
        left: 0;
    }

    header .inner{
        width: 100%;
        background: rgb(255 255 255 / 9%);
        position: relative;
        left: 30px;
        z-index: 5;
    }

    header h1.logo{
        width: 100%;
        max-width: 191px;
        margin-bottom: 20px;
    }

    header nav ul.menu{
        margin-left: 10px;
        position: relative;
        display: block;
        height: auto;
        right: 0;
        width: 100%;
        background: none;
        color: #000;
        text-align: left;
    }
    header nav ul li.menu-list{
        display: block;
        margin-bottom: 15px;
        font-family: aktiv-grotesk, sans-serif;
        font-size: 20px;
    }
    header nav ul li a{
        text-decoration: none;
    }

    .menu-list{
        height: auto;
    }
}

iframe{
    width: 100%;
    height: 100%;
}

a:hover{opacity: 0.8;}

@media screen and (max-width: 768px) {
    img{
        width: 100%;
        max-width: 100%;
        vertical-align: bottom;
    }
}

footer{
    padding: 55px 0 10px;
    text-align: center;
}
footer h1 {
    margin-bottom: 40px;
}
footer h1{
    display: inline-block;
}

@media screen and (max-width: 768px) {
    footer{
        padding: 7.1% 0 10px;
    }
    footer h1 {
        width: 27%;
        margin-bottom: 4.1%;}

    .copy {
        font-size: 12px;
    }
}